我有这段代码
import re
str1 = "These should be counted as a single-word, b**m !?"
match_pattern = re.findall(r'\w{1,15}', str1)
print(match_pattern)
我希望输出为:
['These', 'should', 'be', 'counted', 'as', 'a', 'single-word', 'b**m']
输出应排除非单词,例如“!?”我应该用什么来匹配和实现所需的输出?
答案 0 :(得分:4)
我会使用填充了1个或更多非空格的单词边界(np.where
):
\b
结果:
match_pattern = re.findall(r'\b\S+\b', str1)
由于单词边界魔术而忽略了 ['These', 'should', 'be', 'counted', 'as', 'a', 'single-word', 'b**m']
,并不会将其视为一个单词。
答案 1 :(得分:0)
您也可以使用RegEx获得类似的结果:
string = "These should be counted as a single-word, b**m !?"
replacements = ['.',',','?','!']
for replacement in replacements:
if replacement in string:
string = string.replace(replacement, "");
print string.split()
>>> ['These', 'should', 'be', 'counted', 'as', 'a', 'single-word', 'b**m']
答案 2 :(得分:0)
可能你想要[^\s.!?]
而不是\w
之类的东西,但是你想要的东西在一个例子中并不明显。 [^...]
匹配单个字符,该字符不是括号中的一个,\s
匹配空白字符(空格,制表符,换行符等)。