我想计算字母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或t后跟空格”的模式。要计算文本中此模式的出现次数,您可以编写:
len(re.findall('[Tt] ', text))
如果您不想使用正则表达式,那么您可以编写:
text.count('T ') + text.count('t ')
使用regEx解决了这个问题。检查所有方案都包含在内。