标签: regex
我需要一个正则表达式,匹配包含所有单词,然后是空格,后跟冒号
[All alphabets][whitespace][colon]
答案 0 :(得分:1)
以下模式可用于Ruby,Perl,JavaScript,.Net ... [a-zA-Z]+\s+:
[a-zA-Z]+\s+:
答案 1 :(得分:0)
也许这就是:
[a-zA-Z]+[\W];
这样可以匹配:
test ; test2 ;但这不起作用does ; work ;
test ;
test2 ;
does ;
work ;