gpt4 book ai didi

python - 如何在 Python 3.x 中检查字符串中的新行?

转载 作者:太空狗 更新时间:2023-10-29 17:09:25 25 4
gpt4 key购买 nike

如何检查字符串中是否换行?

python3.x 是否有任何类似于 java 的常规操作的地方直接 if (x=='*\n') 会起作用?

最佳答案

如果您只想检查换行符 (\n) 是否存在,您可以使用 Python 的 in 运算符来检查它是否在字符串中:

>>> "\n" in "hello\ngoodbye"
True

... 或作为 if 语句的一部分:

if "\n" in foo:
print "There's a newline in variable foo"

在这种情况下您不需要使用正则表达式。

关于python - 如何在 Python 3.x 中检查字符串中的新行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5193811/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com