any thought to adding regular expressions to powerbasic?
as in, the standard regular expressions with standard
metacharacters (like from grep, but preferably egrep).
such as:
. matches any character[list] matches any character in list
[0-9] matches any character in range
[^list] matches any character _NOT_ in list
^ matches beginning of line (or string)
$ matches end of line (or string)
to name just a few. and the repetition operators as
well:
? matches 0 or 1 of the preceding regex
* matches 0 or more of the preceding regex
+ matches 1 or more of the preceding regex
{n} matches n of the preceding regex
and so on.
that would be great. thanks!
------------------
as in, the standard regular expressions with standard
metacharacters (like from grep, but preferably egrep).
such as:
. matches any character[list] matches any character in list
[0-9] matches any character in range
[^list] matches any character _NOT_ in list
^ matches beginning of line (or string)
$ matches end of line (or string)
to name just a few. and the repetition operators as
well:
? matches 0 or 1 of the preceding regex
* matches 0 or more of the preceding regex
+ matches 1 or more of the preceding regex
{n} matches n of the preceding regex
and so on.
that would be great. thanks!
------------------
Comment