我可以在字符串中搜索git commit history,但是如何搜索带引号的字符串?这就是我搜索字符串的方式:
cd api
rails s -p 3001 -b 0.0.0.0
cd ..
答案 0 :(得分:2)
只需使用单引号:
seen_dash_flag = false
for status in stdout:
if status.startswith("--"):
seen_dash_flag = true
if seen_dash_flag:
result = (status)
print(result)