📌  相关文章
📜  powershell 检查字符串结尾 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:18.691000             🧑  作者: Mango

代码示例2
#Program to check if string "check" comes at the begining of the string
 $str="checking1234"
 if ( $str.startswith("check") )
 {
 echo "String $str starts with check"
 }