Re: Regular Expressions: find_replace_limit doesn't make all replacements
- Posted by ghaberek (admin) Feb 28, 2022
- 1116 views
abuaf said...
Thanks for the heads up on backticks; no mention in the manual. What is the full details on them? Couldnt find much on the forum.
If you're using Euphoria 4.1, you should have a local copy of the documentation in the "docs" folder. Raw strings are covered in section 4.1 Definition.
abuaf said...
Errors as noted above, how can you enter tabs? but great link for quick testing. Users with super-sed can do this offline with;
When using raw strings, technically `\t` is the same as {'\\','t'} which of course isn't an actual Tab character like '\t'.
However, the regular expressions engine (PCRE) interprets that string as a tab character. Read more here: pcresyntax specification.
-Greg