Explaining the mysteries of [regexp]
This intro to regular expressions might be useful if, like me, you are unfamiliar with them...
I always find string formatting frustrating, that's gonna be really helpful! Thanks!!
Me too.. thanks David!
yay, noob friendly regexp tutorial. thanks !
a question though... the underscore at the end of character class range is not quite explained ?... i mean :
" a word character is \w which is [0-9A-Za-z_] "
i don't understand why there is an underscore ? why not simply [0-9A-Za-z] ?
Max Patch
Copy patch and select New From Clipboard in Max.
"_" is part of the character class.
Try this:
oh, okay, simply that. But why is it part of "word character" then ?