我知道.capitalize()将字符串的第一个字母大写,但如果第一个字符是整数怎么办?
此
1bob
5sandy
到这个
1Bob
5Sandy
答案 0 :(得分:214)
只是因为没有其他人提到它:
>>> 'bob'.title()
'Bob'
>>> 'sandy'.title()
'Sandy'
>>> '1bob'.title()
'1Bob'
>>> '1sandy'.title()
'1Sandy'
但是,这也会给出
>>> '1bob sandy'.title()
'1Bob Sandy'
>>> '1JoeBob'.title()
'1Joebob'
即。它不仅仅是大写第一个字母字符。但是.capitalize()
有同样的问题,至少在'joe Bob'.capitalize() == 'Joe bob'
中,所以meh。
答案 1 :(得分:206)
如果第一个字符是整数,则不会将第一个字母大写。
>>> '2s'.capitalize()
'2s'
如果您需要此功能,请删除数字,您可以使用'2'.isdigit()
检查每个字符。
>>> s = '123sa'
>>> for i, c in enumerate(s):
... if not c.isdigit():
... break
...
>>> s[:i] + s[i:].capitalize()
'123Sa'
答案 2 :(得分:11)
这是一个单行代码,它将大写第一个字母并保留所有后续字母的大小写:
import re
key = 'wordsWithOtherUppercaseLetters'
key = re.sub('([a-zA-Z])', lambda x: x.groups()[0].upper(), key, 1)
print key
这将导致WordsWithOtherUppercaseLetters
答案 3 :(得分:4)
正如陈厚武所回答的那样here,可以使用字符串包:
import string
string.capwords("they're bill's friends from the UK")
>>>"They're Bill's Friends From The Uk"
答案 4 :(得分:1)
我想出了这个:
import re
regex = re.compile("[A-Za-z]") # find a alpha
str = "1st str"
s = regex.search(str).group() # find the first alpha
str = str.replace(s, s.upper(), 1) # replace only 1 instance
print str
答案 5 :(得分:1)
您可以使用正则表达式替换每个单词的第一个字母(preceded by a digit
):
re.sub(r'(\d\w)', lambda w: w.group().upper(), '1bob 5sandy')
output:
1Bob 5Sandy
答案 6 :(得分:1)
单行:' '.join(sub[:1].upper() + sub[1:] for sub in text.split(' '))
答案 7 :(得分:0)
def solve(s):
for i in s[:].split():
s = s.replace(i, i.capitalize())
return s
这是实际的工作代码。 .title()在'12name'情况下不起作用
答案 8 :(得分:0)
def solve(s):
names = list(s.split(" "))
return " ".join([i.capitalize() for i in names])
<块引用>
输入你的名字:john doe
<块引用>返回首字母大写。(如果第一个字符是数字,则不发生大写)
<块引用>适用于任何名称长度