Recurring patterns with $regex
Posted: 09.11.2012 19:42
The $regex command does not understand expressions like \d{3,5} 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.
var %regex = /\d{3,5}/
echo $regex(mystring123,%regex)
var %regex = /\d{3,5}/
echo $regex(mystring123,%regex)