如何将字符串拆分为列表并在python中将两个已知令牌合并为一个?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将字符串拆分为列表并在python中将两个已知令牌合并为一个?相关的知识,希望对你有一定的参考价值。
对于给定的字符串,例如:
"Today is a bright sunny day in New York"
我想让我的名单成为:
['Today','is','a','bright','sunny','day','in','New York']
另一个例子:
"This is a hello world program"
名单是:['This', 'is', 'a', 'hello world', 'program']
对于每个给定的字符串S,我们有需要保持在一起的实体E.第一个例子是实体E是“新”,“约克”,第二个例子是实体是“你好”,“世界”。
我试图通过正则表达式完成它,但我没有成功分割空格和合并两个实体。
例:
regex = "(navy blue)|[a-zA-Z0-9]*"
match = re.findall(regex, "the sky looks navy blue.",re.IGNORECASE)
print match
输出:['', '', '', '', '', '', 'navy blue', '', '']
使用re.findall
而不是split
并在表示要提取的字符串的字符类之前交替提供实体
>>> s = "Today is a bright sunny day in New York"
>>> re.findall(r'New York|\w+', s)
['Today', 'is', 'a', 'bright', 'sunny', 'day', 'in', 'New York']
>>> s = "This is a hello world program"
>>> re.findall(r'hello world|\w+', s)
['This', 'is', 'a', 'hello world', 'program']
将\w
更改为适当的字符类,例如:[a-zA-Z]
对于添加问题的其他样本
>>> regex = r"navy blue|[a-z\d]+"
>>> re.findall(regex, "the sky looks navy blue.", re.IGNORECASE)
['the', 'sky', 'looks', 'navy blue']
- 使用
r
字符串构建正则表达式模式是一种很好的做法 - 这里不需要分组
- 使用
+
而不是*
,以便至少必须匹配一个字符 - 因为指定了
re.IGNORECASE
,所以a-z
或A-Z
在字符类中就足够了。也可以使用re.I
作为捷径 \d
是[0-9]
的捷径
试试这个:
text = "Today is a bright sunny day in New York"
new_list = list(map(str, text.split(" ")))
这应该给你以下输出['Today', 'is', 'a', 'bright', 'sunny', 'day', 'in', 'New', 'York']
对于下一个字符串相同:
hello = "This is a hello world program."
yet_another_list = list(map(str, hello.split(" ")))
给你['This', 'is', 'a', 'hello', 'world', 'program.']
"this is hello word program".split(' ')
拆分将自动生成一个列表。你可以使用任何字符串,单词或字符进行拆分。
以上是关于如何将字符串拆分为列表并在python中将两个已知令牌合并为一个?的主要内容,如果未能解决你的问题,请参考以下文章
python - 如何首先根据初始列表的单个元素将列表拆分为子列表,然后在python中将列表的连续部分拆分为子列表?