And have some unanswered questions.
Is there functional a difference between these two expressions?
Witch is preferred?
Code: Select all
^(leading|)(start.*)
^(leading)?(start.*)I found the last two better readable in combination with the / escape.
Code: Select all
'\(something.*)\'
'%(something.*)%'
'#(something.*)#'s Dot matches new line
i Case insensitive
m ^$ match at line break
Are there more options?
Thanks,
Willem