Hello,
If anyone is good in java or can tell me where i can get help find for the
following it will be much appreciated.
Ive got 2 files file1.txt,file2.txt.
EG:
file1.txt
AD ABCD <=this means add numbers from line ABCD in file2.txt
AV <=this means average numbers from line with in fil
Hello again (final time)
I also want to sort the (number time) field when we have the same day
eg:
below:
ccc gamma sun 3:00
aaa aplha mon 1:00 <1,12:30=>2,13:00=>3,13:30=>4 ..) ?
THIS THE PROGRAM
$line1 = "aaa alpha\nbbb beta\nccc gamma\nddd delta\neee epsilon\nzzz
zeta\n ita\n"
>From: "james poni" <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Concatenating , the final time
>Date: Mon, 29 Apr 2002 11:57:18 +1000
>
>
>
>Hello again (final time)
>
>I also want to sort the (number time) field when we have the same day
Hello again (final time)
I also want to sort the (number time) field when we have the same day
eg:
below:
ccc gamma sun 3:00
aaa aplha mon 1:00 <1,12:30=>2,13:00=>3,13:30=>4 ..) ?
THIS THE PROGRAM
$line1 = "aaa alpha\nbbb beta\nccc gamma\nddd delta\neee epsilon\nzzz
zeta\n ita\n
Hello again
I slightly changed the input but icant seem to get the output like this
below:
bbb beta sun 1,1
aaa aplha mon 2,2
ddd delta tue 3,3
ccc gamma wed 4,4
How would i modify this program in order to do so ?
THIS I THE PROGRAM
$line1 = "aaa alpha\nbbb beta\nccc gamma\nddd delta\n";
$lin
Hello
I have 3 text files and i want to perform concatenation from each line of
the 3 files.
I want the output to look like this:
aaa mon 1
bbb wed 2
ccc sun 3
ddd tue 4
Is it possible to sort the days column in order of the week? Eg
ccc sun 3
aaa mon 1
ddd tue 4
bbb wed 2
This is my code b