is it possible to define exactly which char should end a line ?
i have a file in codepage 500 (EBCDIC) in this codepage 0D0A should be newline. but BufferedReader.readLine()wrongly uses a single...
http://www.experts-exchange.com/Programming/Languages/Java/Q_10328340.html
Zones:
JavaDate Answered: 04/17/2000 Grade: B Views: 15
Hi,
I need to load a file of which the row terminator is only a linefeed (0A). How can I load this file? BULK INSERT only has \n (0D0A) and \r (0D) as row terminators. If you use \n, BULK INSERT...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_20318650.html
Dear all,
My program will read in a file line by line. In each line, if the character '0D0A' or '0A' (ascii hex code) is encountered, I want to remove the '0A' from the line. May you show...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20606643.html
Zones:
C++Date Answered: 05/06/2003 Grade: A Views: 13
I'm using asm112 to write a program to floppy boot sector.
Here's the code
mov ax,07c0
mov ds,ax
xor bx,bx
mov ah,0e
mov si,off...
http://www.experts-exchange.com/Programming/Languages/Assembly/Q_21218616.html
Zones:
AssemblyDate Answered: 11/28/2004 Grade: A Views: 0
I need to replace characters in a string, using JSTL. I'm not really familiar with JSTL. The string is the result of the c:out tag. The characters are the following (hexadecimal): 0D 0A 09, in rand...
http://www.experts-exchange.com/Programming/Languages/Java/J2EE/JSP/Q_21473502.html
Hi
I have a code like this. It outputs following funny characters. Can you please help?
$width=120;
$height=round($width * ($size[1] / $size[0]));
$img=imagecreatetruecolor ($width, $heig...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/Q_21665583.htm...
Hi,
I have an Oracle database table that I have downloaded into MS Access. I need to transfer this data to a file on an IBM AS-400. Everything works great except one thing. One of the columns...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_21740021.html
Zones:
MS AccessDate Answered: 03/26/2006 Grade: A Views: 5
Hi Experts,
Some time ago, ozo showed me how to do things like:
perl -pe "BEGIN{binmode STDOUT} s/\r//" dosfile >unixfile
to remove CRs (carriage returns) from files, and:
perl -i.bak...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_21904242.html
Zones:
PerlDate Answered: 07/03/2006 Grade: A Views: 0
I have hundreds of TXT files, in ASCII format, that have a lots of page-breaks that I want to remove or replace.
When I look at it in Windows Notepad, it just looks like a little vertical re...
http://www.experts-exchange.com/Programming/Languages/Regular_Expressions/Q_22946321.html
I am trying to open a file, read the contents of the file into a string for later modification, then close the file. See code below..
ff = FreeFile
Open Fname$ For Binary As #ff
Raw$ = String$...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20267864.html
Zones:
Visual BasicDate Answered: 02/17/2002 Grade: A Views: 0