计算特定字母后的空格
Counting spaces after a specific letter
我想计算字母 T 或 t 后的空格。
正文:
Mr oh winding it enjoyed by between. The servants securing material goodness her. \
Saw principles themselves ten are possession. So endeavor to continue
如果要使用正则表达式,那么 [Tt]
就是 "a T or t followed by a space" 的模式。要计算该模式在文本中出现的次数,您可以这样写:
len(re.findall('[Tt] ', text))
如果你不想使用正则表达式,那么你可以这样写:
text.count('T ') + text.count('t ')
使用正则表达式解决了这个问题。检查您的所有场景是否都已涵盖。
我想计算字母 T 或 t 后的空格。
正文:
Mr oh winding it enjoyed by between. The servants securing material goodness her. \
Saw principles themselves ten are possession. So endeavor to continue
如果要使用正则表达式,那么 [Tt]
就是 "a T or t followed by a space" 的模式。要计算该模式在文本中出现的次数,您可以这样写:
len(re.findall('[Tt] ', text))
如果你不想使用正则表达式,那么你可以这样写:
text.count('T ') + text.count('t ')
使用正则表达式解决了这个问题。检查您的所有场景是否都已涵盖。