in reply to Re: Regex tester
in thread Regex tester

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