Re: [PHP] Re: regular expressions

2006-11-19 Thread Børge Holen
On Sunday 19 November 2006 23:25, Al wrote: Get Sams, Teach yourself Regular Expressions It's a great little, simple book. I'll look that one up. Thank you =) Then get the Regex Coach. Google to find it. It's free, works great and is super for learning regex And this one, I'm on right

RE: [PHP] Re: regular expressions

2002-02-21 Thread Martin Towell
yeah! remember that php interprets the string first, before it gets to reg.ex. !! That's some I keep forgetting... lol Martin -Original Message- From: Murray Chamberlain [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 2:48 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: regular

RE: [PHP] Re: regular expressions

2002-02-21 Thread Douglas Maclaine-cross
Use single quotes? I think that stops it from interpreting the regular expression before hand. -Original Message- From: Martin Towell [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 10:32 To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: regular expressions yeah! remember

Re: [PHP] Re: Regular Expressions - A relatively simple search...

2001-09-09 Thread Sterling Hughes
On Mon, 10 Sep 2001, Mike Gifford wrote: Thanks robin, this is very useful! yep, although pathinfo() is much easier: $extension = pathinfo($userfile_name, PATHINFO_EXTENSION); -Sterling Robin Vickery wrote: [EMAIL PROTECTED] (Mike Gifford) writes: Hello, I'm trying to