これはかなり基本的なことですが、2 つの参照点の間の文字列を見つける最善の方法は何かと考えていました。
例えば:
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
しかし、もっと簡単な方法があるのか、それとも単純に違う方法があるのか 疑問に思っていました. ありがとうございました!