http://qs321.pair.com?node_id=282010


in reply to Pattern matching: Why no \1 in [ ]?

\1 provides the ability to substitute the literal text string of a previously matched parameter into the regular expression. It doesn't give you the ability to recompile the regular expression. Character class ([...]) are a compile time directive. \1 is a run time directive. [\1] is interpretted as 'the character with value 1'.