如何匹配字符串的开头处的字符^
?
答案 0 :(得分:2)
我认为简单
if($string[0]=='^')
在PHP中,字符串实际上是一个数组,因此$foo ="string"
,您可以使用$foo[0]
访问“s”,使用$foo[1]
访问“t”,依此类推.. < / p>
答案 1 :(得分:1)
检查字符串是否以^
if(strpos($subject, "^") === 0){
}
或
if (preg_match('/^\^/', $subject)) {
# Successful match
} else {
# Match attempt failed
}
答案 2 :(得分:1)
如果我理解正确,那就是你所需要的:
if(strcmp('^', substr($yourString, 0, 1)) === 0) {
//Do your thing
} else {
// Dont
}