特定字母后的空格计数

时间:2019-03-23 20:27:06

标签: count space specifications 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

2 个答案:

答案 0 :(得分:0)

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

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

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

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

答案 1 :(得分:0)

使用regEx解决了此问题。检查所有方案是否已覆盖。

Check Here