Case-insensitive matching on urls.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4514 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2007-01-29 22:51:53 +00:00
parent 5fcbf90bb0
commit 4c81cc104b
+1 -1
View File
@@ -228,6 +228,6 @@ public class StringUtil
/** A regular expression that finds URLs. */
protected static const URL_REGEXP :RegExp =
new RegExp("(http|https|ftp)://\\S+");
new RegExp("(http|https|ftp)://\\S+", "i");
}
}