Explanation how you can use regular expressions in Xojo (formerly REALbasic) with its built-in RegEx class| www.regular-expressions.info
In a regular expression, the dot matches any character except line breaks.| www.regular-expressions.info
This tutorial teaches you how to create your own regular expressions, starting with the most basic regex concepts and ending with the most advanced and specialized capabilities.| www.regular-expressions.info
Specifying Modes Inside The Regular Expression| www.regular-expressions.info
In a regular expression, parentheses can be used to group regex tokens together and for creating backreferences. Backreferences allow you to reuse part of the regex match in the regex, or in the replacement text.| www.regular-expressions.info
PCRE (Perl Compatible Regular Expressions) is an open source library written in C that allows developers to add regular expression support to their applications. The library is compatible with a great number of C compilers and operating systems.| www.regular-expressions.info
In a regular expression, the caret matches the concept “start of string”, while the dollar sign matches “end of string”| www.regular-expressions.info