Page 1 of 1

Recurring patterns with $regex

Posted: 09.11.2012 19:42
by Tuxman
The $regex command does not understand expressions like [i]\d{3,5}[/i] because mIRC treats a comma as a special character (see the syntax of $gettok() for example). A way to work around it is using a temporary variable for the regular expression.



[i]var %regex = /\d{3,5}/

echo $regex(mystring123,%regex)[/i]