我知道这是相当基本的,但是我想知道在两个引用点之间找到字符串的最佳方法是什么。
例如:
查找 2 个逗号之间的字符串:
Hello, This is the string I want, blabla
我最初的想法是创建一个列表并让它做这样的事情:
stringtext= []
commacount = 0
word=""
for i in "Hello, This is the string I want, blabla":
if i == "," and commacount != 1:
commacount = 1
elif i == "," and commacount == 1:
commacount = 0
if commacount == 1:
stringtext.append(i)
print stringtext
for e in stringtext:
word += str(e)
print word
但是我想知道是否有更简单的方法,或者可能只是不同的方法。谢谢!