在特定字母后计算空格

问题描述 投票:0回答:2

我想计算字母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
count space specifications letter
2个回答
0
投票

如果你想使用正则表达式,那么[Tt]是“a T或t后跟空格”的模式。要计算文本中此模式的出现次数,您可以编写:

len(re.findall('[Tt] ', text))

如果您不想使用正则表达式,那么您可以编写:

text.count('T ') + text.count('t ')

0
投票

使用regEx解决了这个问题。检查所有方案都包含在内。

Check Here

© www.soinside.com 2019 - 2024. All rights reserved.