小编典典

检查字符串是否以 XXXX 开头

all

我想知道如何在 Python 中检查字符串是否以“hello”开头。

在 Bash 中,我通常会这样做:

if [[ "$string" =~ ^hello ]]; then
 do something here
fi

我如何在 Python 中实现相同的目标?


阅读 80

收藏
2022-03-13

共1个答案

小编典典

aString = "hello world"
aString.startswith("hello")

有关
的更多信息startswith

2022-03-13