Regexp匹配#和punction字符之间的所有内容

时间:2015-05-03 16:01:26

标签: regex actionscript-3

我需要在#和空格或任何标点字符(.,;:_-)之间提取所有内容 这是我到目前为止所做的。

var str = "#hello. foo bar"
var filter:RegExp = /#(.*?)(!.,?;:_-)/g;
var matches:Object = filter.exec(str);

if(matches != null){
trace("Found: "+matches[1])
} else {
trace("nothing found")  
}

只有当这个词是#hello时它才有效! - 我想这部分(!.,?;:_-)是错的?

0 个答案:

没有答案