Answers:
的.title()
一个字符串(ASCII或Unicode是细)的方法做到这一点:
>>> "hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
但是,请注意文档中提到的带有嵌入式撇号的字符串。
该算法使用单词的简单语言独立定义作为连续字母的组。该定义在许多情况下都适用,但是它意味着缩略语和所有格中的撇号形成单词边界,这可能不是期望的结果:
>>> "they're bill's friends from the UK".title() "They'Re Bill'S Friends From The Uk"
"e g 3b"
所需的结果将是"E G 3b"
。但是,"e g 3b".title()
返回"E G 3B"
。
In [2]: 'tEst'.title() Out[2]: 'Test'
该.title()
方法效果不佳,
>>> "they're bill's friends from the UK".title()
"They'Re Bill'S Friends From The Uk"
试试string.capwords()
方法,
import string
string.capwords("they're bill's friends from the UK")
>>>"They're Bill's Friends From The Uk"
使用str.split()将参数分解为单词,使用str.capitalize()将每个单词大写,然后使用str.join()将大写的单词连接起来。如果不存在可选的第二个参数sep或“无”,则将空白字符替换为一个空格,并删除前导和尾随空白,否则将使用sep拆分和合并单词。
"There once was a string with an 'that had words right after it and then closed'"
。在此示例中,除that
预期之外的所有世界都被大写了。结果是"There Once Was A String With An 'that Had Words Right After It And Then Closed'"
title()
正常情况下效果更好。在我的情况下,正确处理title()
带有重音或重音符号的名称会返回错误的输出capwords()
。
仅仅因为这种事情对我来说很有趣,所以这里有另外两个解决方案。
拆分为单词,对拆分组中的每个单词进行大写,然后重新加入。不管是什么,这都会将将单词分隔的空白变为单个空白。
s = 'the brown fox'
lst = [word[0].upper() + word[1:] for word in s.split()]
s = " ".join(lst)
编辑:我不记得我在写上面的代码时在想什么,但是没有必要建立一个明确的列表。我们可以使用生成器表达式以懒惰的方式进行操作。因此,这是一个更好的解决方案:
s = 'the brown fox'
s = ' '.join(word[0].upper() + word[1:] for word in s.split())
使用正则表达式匹配字符串的开头,或使用空格分隔单词,再加上一个非空格字符;用括号标记“匹配组”。编写一个函数,该函数接受一个match对象,并以大写形式返回空白的空白匹配组和非空白的字符匹配组。然后使用re.sub()
替换图案。这个没有第一个解决方案的标点符号问题,也没有像我的第一个解决方案那样重做空白。这产生最好的结果。
import re
s = 'the brown fox'
def repl_func(m):
"""process regular expression match groups for word upper-casing problem"""
return m.group(1) + m.group(2).upper()
s = re.sub("(^|\s)(\S)", repl_func, s)
>>> re.sub("(^|\s)(\S)", repl_func, s)
"They're Bill's Friends From The UK"
我很高兴研究了这个答案。我不知道re.sub()
可以发挥作用!您可以在内部re.sub()
进行非平凡的处理以产生最终结果!
string.capwords
根据陈厚武回答中的文件,这似乎是在做什么。
以下是执行此操作的不同方法的摘要,它们将适用于所有这些输入:
"" => ""
"a b c" => "A B C"
"foO baR" => "FoO BaR"
"foo bar" => "Foo Bar"
"foo's bar" => "Foo's Bar"
"foo's1bar" => "Foo's1bar"
"foo 1bar" => "Foo 1bar"
-最简单的解决方案是将句子拆分成单词并大写第一个字母,然后将其重新组合在一起:
# Be careful with multiple spaces, and empty strings
# for empty words w[0] would cause an index error,
# but with w[:1] we get an empty string as desired
def cap_sentence(s):
return ' '.join(w[:1].upper() + w[1:] for w in s.split(' '))
-如果您不想先使用花哨的生成器将输入字符串拆分成单词,请执行以下操作:
# Iterate through each of the characters in the string and capitalize
# the first char and any char after a blank space
from itertools import chain
def cap_sentence(s):
return ''.join( (c.upper() if prev == ' ' else c) for c, prev in zip(s, chain(' ', s)) )
-或不导入itertools:
def cap_sentence(s):
return ''.join( (c.upper() if i == 0 or s[i-1] == ' ' else c) for i, c in enumerate(s) )
-或者您可以使用正则表达式,来自steveha的答案:
# match the beginning of the string or a space, followed by a non-space
import re
def cap_sentence(s):
return re.sub("(^|\s)(\S)", lambda m: m.group(1) + m.group(2).upper(), s)
现在,这些是其他一些已发布的答案,如果我们使用的单词定义是句子的开头或空格后的任何内容,则这些输入将无法按预期运行:
return s.title()
# Undesired outputs:
"foO baR" => "Foo Bar"
"foo's bar" => "Foo'S Bar"
"foo's1bar" => "Foo'S1Bar"
"foo 1bar" => "Foo 1Bar"
return ' '.join(w.capitalize() for w in s.split())
# or
import string
return string.capwords(s)
# Undesired outputs:
"foO baR" => "Foo Bar"
"foo bar" => "Foo Bar"
使用''进行拆分将修复第二个输出,但是capwords()仍不适用于第一个输出
return ' '.join(w.capitalize() for w in s.split(' '))
# or
import string
return string.capwords(s, ' ')
# Undesired outputs:
"foO baR" => "Foo Bar"
注意多个空格
return ' '.join(w[0].upper() + w[1:] for w in s.split())
# Undesired outputs:
"foo bar" => "Foo Bar"
lower 123 upper
,return lower 123 Upper
,其中的数字upper
大写。我知道这超出了OP的问题范围,但却是您已经广泛的答案的一个不错的附加。提前致谢。
"([0-9]+)(\s+.)"
代替"(^|\s)(\S)"
(匹配一个或多个数字,后跟一个或多个空格,以及之后的任何字符),或者 "([0-9]+)(\s*.)"
如果您想在大写的“零个或多个”之后大写字符号码
WW1 - the great war
并输出WW1 - The Great War
而不是Ww1 ...
。看到带有缩写的问题?您愿意添加一些可以证明这种情况的东西吗?我已经想了好一阵子了,想不出办法了。
WW1
将输出为WW1
@jibberia anwser的复制粘贴就绪版本:
def capitalize(line):
return ' '.join(s[:1].upper() + s[1:] for s in line.split(' '))
str.join
接受发电机。
join
接受gen exp 方面很完美str.join
,但特别是在通常情况下,最好使用列表理解。这是因为join
对参数进行两次迭代,因此提供现成的列表而不是生成器更快。
str.join
需要对参数进行两次迭代?我刚刚检查了-事实并非如此。尽管对于小序列,列表理解确实确实更快。
当解决方案既简单又安全时,为什么要使join和for循环使您的生活复杂化?
只是这样做:
string = "the brown fox"
string[0].upper()+string[1:]
"the brown fox".capitalize()
吗?
'this is John'
变成'This is john'
。
string.capitalize()
(本质上是回声@luckydonald)
如果str.title()对您不起作用,请自己大写。
单线:
>>> ' '.join([s[0].upper() + s[1:] for s in "they're bill's friends from the UK".split(' ')])
"They're Bill's Friends From The UK"
清晰的例子:
input = "they're bill's friends from the UK"
words = input.split(' ')
capitalized_words = []
for word in words:
title_case_word = word[0].upper() + word[1:]
capitalized_words.append(title_case_word)
output = ' '.join(capitalized_words)
如果只想要第一个字母:
>>> 'hello world'.capitalize()
'Hello world'
但是要大写每个单词:
>>> 'hello world'.title()
'Hello World'
'hello New York'.capitalize()
是'Hello new york'
如果您访问[1:],则空字符串将引发错误,因此我将使用:
def my_uppercase(title):
if not title:
return ''
return title[0].upper() + title[1:]
仅将首字母大写。
str.capitalize
吗?
return title[:1].upper() + title[1:]
也将解决该问题,因为将这样的空字符串切成薄片将得到2个空字符串,将它们连接在一起将得到一个空字符串,然后将其返回
建议的方法str.title()并非在所有情况下都有效。例如:
string = "a b 3c"
string.title()
> "A B 3C"
代替"A B 3c"
。
我认为,最好执行以下操作:
def capitalize_words(string):
words = string.split(" ") # just change the split(" ") method
return ' '.join([word.capitalize() for word in words])
capitalize_words(string)
>'A B 3c'
尽管所有答案都已经令人满意,但是我将尝试覆盖所有2个额外的情况以及以前的所有情况。
如果空间不均匀并且您想要保持相同
string = hello world i am here.
如果所有字符串都不以字母开头
string = 1 w 2 r 3g
在这里你可以使用
def solve(s):
a = s.split(' ')
for i in range(len(a)):
a[i]= a[i].capitalize()
return ' '.join(a)
这会给你
output = Hello World I Am Here
output = 1 W 2 R 3g
我希望这不是多余的。
大写单词...
str = "this is string example.... wow!!!";
print "str.title() : ", str.title();
@ Gary02127注释,在解决方案工作标题下带有撇号
import re
def titlecase(s):
return re.sub(r"[A-Za-z]+('[A-Za-z]+)?", lambda mo: mo.group(0)[0].upper() + mo.group(0)[1:].lower(), s)
text = "He's an engineer, isn't he? SnippetBucket.com "
print(titlecase(text))
快速功能适用于Python 3
Python 3.6.9 (default, Nov 7 2019, 10:44:02)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> capitalizeFirtChar = lambda s: s[:1].upper() + s[1:]
>>> print(capitalizeFirtChar('помните своих Предковъ. Сражайся за Правду и Справедливость!'))
Помните своих Предковъ. Сражайся за Правду и Справедливость!
>>> print(capitalizeFirtChar('хай живе вільна Україна! Хай живе Любовь поміж нас.'))
Хай живе вільна Україна! Хай живе Любовь поміж нас.
>>> print(capitalizeFirtChar('faith and Labour make Dreams come true.'))
Faith and Labour make Dreams come true.
用不均匀的空格大写字符串
好吧,我知道这是一个古老的问题,可能答案几乎已经用尽,但我想补充一下@Amit Gupta的非均匀空间。从最初的问题开始,我们想将字符串中的每个单词都大写s = 'the brown fox'
。如果字符串的s = 'the brown fox'
空格不均匀怎么办。
def solve(s):
# if you want to maintain the spaces in the string, s = 'the brown fox'
# use s.split(' ') instead of s.split().
# s.split() returns ['the', 'brown', 'fox']
# while s.split(' ') returns ['the', 'brown', '', '', '', '', '', 'fox']
capitalized_word_list = [word.capitalize() for word in s.split(' ')]
return ' '.join(capitalized_word_list)
我真的很喜欢这个答案:
@jibberia anwser的复制粘贴就绪版本:
def capitalize(line):
return ' '.join([s[0].upper() + s[1:] for s in line.split(' ')])
但是,我发送的某些行拆分了一些空白的''字符,这些字符在尝试执行s [1:]时会导致错误。可能有更好的方法来执行此操作,但是我必须添加if len(s)> 0,例如
return ' '.join([s[0].upper() + s[1:] for s in line.split(' ') if len(s)>0])
" ".join(w.capitalize() for w in s.split())