我需要在#
和空格或任何标点字符(.,;:_-
)之间提取所有内容
这是我到目前为止所做的。
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时它才有效! - 我想这部分(!.,?;:_-)
是错的?