私はPythonを初めて使用するので、多くの疑問があります。たとえば、次の文字列があります。
string = "xtpo, example1=x, example2, example3=thisValue"
たとえば、 と の等号の隣の値を取得することは可能example1
ですexample3
か? =
?の後に続くものではなく、キーワードのみを知っています。
私はPythonを初めて使用するので、多くの疑問があります。たとえば、次の文字列があります。
string = "xtpo, example1=x, example2, example3=thisValue"
たとえば、 と の等号の隣の値を取得することは可能example1
ですexample3
か? =
?の後に続くものではなく、キーワードのみを知っています。
わかりやすくするために間隔をあける
>>> Sstring = "xtpo, example1=x, example2, example3=thisValue"
>>> items = Sstring.split(',') # Get the comma separated items
>>> for i in items:
... Pair = i.split('=') # Try splitting on =
... if len(Pair) > 1: # Did split
... print Pair # or whatever you would like to do
...
[' example1', 'x']
[' example3', 'thisValue']
>>>