Re: Regular Expression Quick Reference

2003-07-27 Thread Iain Truskett
Hmm. No comments from anyone here? http://dellah.org/perlreref.pod http://dellah.org/perlreref.html Should I just send to p5p instead of here? cheers, -- Iain.

Re: Regular Expression Quick Reference

2003-07-27 Thread Sean M. Burke
At 06:53 PM 2003-07-27 +1000, you wrote: Hmm. No comments from anyone here? http://dellah.org/perlreref.pod http://dellah.org/perlreref.html It all looks wonderful! Except I'm a bit torn over this: \x7f Any hexadecimal ASCII value \x{263a} A wide hexadecimal value Isn't there

RE: Regular Expression Quick Reference

2003-07-27 Thread Hugh S. Myers
Looks quite good to me---although I might remove the '^' character from the headings (unless I mis-understand its usage?) --hsm -Original Message- From: Iain Truskett [mailto:[EMAIL PROTECTED] Sent: Sunday, July 27, 2003 2:54 AM To: [EMAIL PROTECTED] Subject: Re: Regular Expression

Re: Regular Expression Quick Reference

2003-07-27 Thread Tom Christiansen
+ lc Lowercase a string + lcfirst Lowercase first char of a string + uc Uppercase a string + ucfirst Uppercase first char of a string Not quite; the last one (for ucfirst or \u) should be Titlecase, not Uppercase--which of course, are not always the same.