python使用正则表达式判别字符串是否以一个大写字符起始而跟随了一些小写字符

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用正则表达式判别字符串是否以一个大写字符起始而跟随了一些小写字符相关的知识,希望对你有一定的参考价值。

python使用正则表达式判别字符串是否以一个大写字符起始而跟随了一些小写字符
 

#

# Python3 code to find sequences of one upper
# case letter followed by lower case letters
import re

# Function to match the string
def match(text):
		
		# regex
		pattern = '[A-Z]+[a-z]+$'
		
		# searching pattern
		if re.search(pattern, text):
				return('Yes')
		else:
				return('No')

# Driver Function
print(match("Darling"))
print(match("okseseesee"))
print(match("Bravo"))
print(match("B"))
Yes
No
Yes
No

参考:Python regex to find sequences of one upper case letter followed by lower case letters

参考: Python find sequences of one upper case letter followed by lower case letters

参考:python re

以上是关于python使用正则表达式判别字符串是否以一个大写字符起始而跟随了一些小写字符的主要内容,如果未能解决你的问题,请参考以下文章

带有大写,小写,数字和特殊字符的复杂密码的正则表达式(Python)

正则表达式以python分割文本文件

是否有用于反向引用的大写/小写版本的正则表达式替换术语? [复制]

在正则表达式中查找带有大写字母并以某个单词结尾的字符串

在Java中,如何在没有正则表达式的情况下查找字符串中的第一个字符是不是为大写

正则表达式以匹配大写或小写的查询字符串