Re: Modifying the string entered

2003-02-06 Thread Rob Dixon
[EMAIL PROTECTED] wrote: > > > You brits, can't you get your hot dog buns pre-sliced over there? ;-) > Not arrogant, just qq[having "self-power" awareness] :) Believe it or not, our 'Sainbury's' supermarket started pre-slicing their hot-dog buns

Re: Modifying the string entered

2003-02-06 Thread wiggins
On Thu, 6 Feb 2003 12:24:51 -, "Rob Dixon" <[EMAIL PROTECTED]> wrote: > R. Joseph Newton wrote: > > Rob Dixon wrote: > > > >> > >> my ( $path, $file ) = ( $fullpath =~ /(.*)\/(.*)/ ); > >> > > > > Ah, but that would be cracking the egg at t

Re: Modifying the string entered

2003-02-06 Thread Rob Dixon
R. Joseph Newton wrote: > Rob Dixon wrote: > >> >> my ( $path, $file ) = ( $fullpath =~ /(.*)\/(.*)/ ); >> > > Ah, but that would be cracking the egg at the small end, which only a > barbarian would do )( ;o }) No, not a barbarian, just a rebel. I slice my hot-dog buns on the flat as well :)

Re: Modifying the string entered

2003-02-05 Thread R. Joseph Newton
Rob Dixon wrote: > > my ( $path, $file ) = ( $fullpath =~ /(.*)\/(.*)/ ); > Ah, but that would be cracking the egg at the small end, which only a barbarian would do )( ;o }) Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Modifying the string entered

2003-02-05 Thread Rob Dixon
R. Joseph Newton wrote: > debraj bhattacharyya wrote: > >> Hi >> I am facing a problem .In one script ,it asks the user to enter a >> filename ,where the whole path can also be entered.For Example : >> >> Enter the FILENAME : /usr/bin/xyz.sql >> >> My question is how to separate the directory path

Re: Modifying the string entered

2003-02-05 Thread R. Joseph Newton
debraj bhattacharyya wrote: > Hi > I am facing a problem .In one script ,it asks the user to enter a filename ,where >the whole path can also be entered.For Example : > > Enter the FILENAME : /usr/bin/xyz.sql > > My question is how to separate the directory path from the filename ,store it in >d

Re: Modifying the string entered

2003-02-05 Thread John W. Krahn
Debraj Bhattacharyya wrote: > > Hi Hello, > I am facing a problem .In one script ,it asks the user to enter a filename ,where > the whole path can also be entered.For Example : > > Enter the FILENAME : /usr/bin/xyz.sql > > My question is how to separate the directory path from the filename ,st

Re: Modifying the string entered

2003-02-05 Thread Janek Schleicher
On Wed, 05 Feb 2003 11:04:34 +0600, Debraj Bhattacharyya wrote: > I am facing a problem .In one script ,it asks the user to enter a > filename ,where the whole path can also be entered.For Example : > > Enter the FILENAME : /usr/bin/xyz.sql > > My question is how to separate the directory path f

Re: Modifying the string entered

2003-02-05 Thread Felix Geerinckx
on Wed, 05 Feb 2003 05:04:34 GMT, [EMAIL PROTECTED] (Debraj Bhattacharyya) wrote: > Enter the FILENAME : /usr/bin/xyz.sql > > My question is how to separate the directory path from the > filename ,store it in different variables and then go to that > particular directory to look for the file ?