ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
可能正则表达式最常用的一个地方就是检查一个字符串是否匹配特定模式。正则表达式对象的 match 方法可以用来做这些: ~~~ class Main { static function main() { var r = ~/world/; var str = "hello world"; // true : 'world' was found in the string trace(r.match(str)); trace(r.match("hello !")); // false } } ~~~