Quote:
Originally Posted by Psymon
And even though I don't know exactly what each part of "(.+?)" actually means/does
|
For the record:
. : any character
+ : any number of times (but at least one)
? : but as few as as possible, as long as the rest of the expression still matches
( ) : and put it in a group, so it can be referred to as \1, \2, etc.