Re: Sorting!

2008-08-02 Thread Rob Dixon
Gunwant Singh wrote: > Hi all, > > I really appreciate all you guys there for the help you've provided to > me in the past. > So here I am again with a Question. > > I have a file with the following entries: > > 1:17 > 4:3 > 4:11 > 4:13 > 11:16 > 12:10 > 13:2 > 19:5 > 20:7 > 26:12 > 28:4 > 33:1

Re: Sorting!

2008-08-02 Thread Mr. Shawn H. Corey
On Sun, 2008-08-03 at 01:53 +0530, Gunwant Singh wrote: > Hi all, > > I really appreciate all you guys there for the help you've provided to > me in the past. > So here I am again with a Question. > > I have a file with the following entries: > > 1:17 > 4:3 > 4:11 > 4:13 > 11:16 > 12:10 > 13:2

Sorting!

2008-08-02 Thread Gunwant Singh
Hi all, I really appreciate all you guys there for the help you've provided to me in the past. So here I am again with a Question. I have a file with the following entries: 1:17 4:3 4:11 4:13 11:16 12:10 13:2 19:5 20:7 26:12 28:4 33:15 33:17 35:9 36:1 42:14 43:6 44:8 46:0.. and so on You wil

Re: regular expression problem

2008-08-02 Thread John W. Krahn
John W. Krahn wrote: [EMAIL PROTECTED] wrote: I'm trying to substitute all comma separated numbers in a texv dile with the same numbers without commas. This expression will match the numbers: \d{1,3}?(,\d\d\d)+ but how do i refer to each 3 digit block after the commas so i can substitute for th

Re: regular expression problem

2008-08-02 Thread John W. Krahn
[EMAIL PROTECTED] wrote: I'm trying to substitute all comma separated numbers in a texv dile with the same numbers without commas. This expression will match the numbers: \d{1,3}?(,\d\d\d)+ but how do i refer to each 3 digit block after the commas so i can substitute for them? $1 here just retu

Re: regular expression problem

2008-08-02 Thread Rob Dixon
[EMAIL PROTECTED] wrote: > > I'm trying to substitute all comma separated numbers in a text file > with the same numbers without commas. This expression will match the > numbers: \d{1,3}?(,\d\d\d)+ but how do i refer to each 3 digit block > after the commas so i can substitute for them? $1 here j

Re: regular expression problem

2008-08-02 Thread Rob Coops
Try looking up the 'g' modifier for regular expressions. http://perldoc.perl.org/perlre.html On Fri, Aug 1, 2008 at 10:28 AM, <[EMAIL PROTECTED]> wrote: > I'm trying to substitute all comma separated numbers in a text file > with the same numbers without commas. This expression will match the >

regular expression problem

2008-08-02 Thread seanctaylor1
I'm trying to substitute all comma separated numbers in a text file with the same numbers without commas. This expression will match the numbers: \d{1,3}?(,\d\d\d)+ but how do i refer to each 3 digit block after the commas so i can substitute for them? $1 here just returns the last 3 digit number

Substitution within an html page

2008-08-02 Thread David Allender
Hello all, I've been trying multiple different ways, but I am still unable to have the output that i am looking for. What I'm trying to do is change certain text in an html file. How would i go about doing that successfully? what i know is that you call open such as open(HTML, /path); and from

Re: getting process id under NT

2008-08-02 Thread epanda
I have tried your pm and it works well on XP but does not on my NT platform. I have the following error : Error - Variant '$_[0]' support status is unknown. This can happen if you 'use Win32::Process::Info ();'. Please do not do that. eod When I set the environment variables I have Windo