本文介绍了在字符串 Python 中,我如何在 : 之前获取所有内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找一种方法来获取 a 之前字符串中的所有字母,但我不知道从哪里开始.我会使用正则表达式吗?如果是这样怎么办?
string = "用户名:你今天好吗?"
有人可以向我展示一个我可以做什么的例子吗?
解决方案
只需使用 split
功能.它返回一个列表,因此您可以保留第一个元素:
I am looking for a way to get all of the letters in a string before a : but I have no idea on where to start. Would I use regex? If so how?
string = "Username: How are you today?"
Can someone show me a example on what I could do?
解决方案
Just use the split
function. It returns a list, so you can keep the first element:
>>> s1.split(':')
['Username', ' How are you today?']
>>> s1.split(':')[0]
'Username'
这篇关于在字符串 Python 中,我如何在 : 之前获取所有内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!