0
我在查找特定的字符串
str = '"A,B,C,Be,F,Sa,Su"' # where str[1]='M' and str[2]=','
我想找到if "mystring" in str:
表單數據。其中mystring是M,T,W或Th等。
但是,我想只有特定的字符串。即對if "S" in str:
輸出應該是沒有。而if "B" in str:
應該只有 'B',而不是 '是'
我在查找特定的字符串
str = '"A,B,C,Be,F,Sa,Su"' # where str[1]='M' and str[2]=','
我想找到if "mystring" in str:
表單數據。其中mystring是M,T,W或Th等。
但是,我想只有特定的字符串。即對if "S" in str:
輸出應該是沒有。而if "B" in str:
應該只有 'B',而不是 '是'
>>> text = '"A,B,C,Be,F,Sa,Su"'
>>> 'A' in text.strip('"').split(',')
True
>>> 'S' in text.strip('"').split(',')
False
'海峽[1] ='M''!? – unutbu 2013-03-23 14:06:49
我真不明白‘在海峽:'輸出應該是沒有'如果。‘在*「'如果’S B’在海峽:'應該只有‘B’,而不是‘是’」 * – NPE 2013-03-23 14:07:55
我給對於理解這個問題的人來說,超級古怪的獎勵。 – 2013-03-23 14:08:53