Regex: ?time? ... Regex: |time| ... Regex: ~time~ ... Regex: !time!
You must add the m prefix unless you use the slash; it works the same way it does on Perl:
String: fred same joe time Regex: m?time? Result: fred same joe time Matched: Yes String: fred same joe time Regex: m~time~ Result: fred same joe time Matched: Yes String: fred same joe time Regex: m|time| Result: fred same joe time Matched: Yes String: fred same joe time Regex: m!time! Result: fred same joe time Matched: Yes
In reply to Re^2: Regex tester
by alexm
in thread Regex tester
by oko1
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |