0
如果字符串中存在符號「\ s」,則測試有問題。例如'\sgoogle\s.com'
必須顯示有。Python測試如果空格( s)符號在字符串中
如果字符串中存在符號「\ s」,則測試有問題。例如'\sgoogle\s.com'
必須顯示有。Python測試如果空格( s)符號在字符串中
# use raw strings to ignore escapes:
s = r'\sgoogle\s'
print s, s.find(r'\s') != -1
# and with regex:
import re
print re.search(r'\\s', s)
給出:
\sgoogle\s True
<_sre.SRE_Match object at 0x7f2d696fc850>
你們是不是要與真正的空白,或反斜槓後跟一個s? – user2357112