
Jasmine
Administrator
/ Moderator
Mar 1, 2002, 4:06 PM
Post #6 of 15
(7927 views)
|
If you're curious about what /([\001-\006\b\f\n\r\e<crlf>])/ does in the split line, here's the regex, as explained by [url=http://search.cpan.org/search?dist=YAPE-Regex-Explain]YAPE::Regex::Explain
/ '/' ---------------------------------------------------------------------- ( group and capture to \1: ---------------------------------------------------------------------- [\001- any character of: '\001' to '\006', '\b' \006\b\f\n\r\e<crlf>] (backspace), '\f' (form feed), '\n' (newline), '\r' (carriage return), '\e' (escape), '<', 'c', 'r', 'l', 'f', '>' ---------------------------------------------------------------------- ) end of \1 ---------------------------------------------------------------------- / '/'
|