gpt4 book ai didi

php - 在两个定界字符之一之前隔离前导字符串

转载 作者:可可西里 更新时间:2023-10-31 23:04:22 24 4
gpt4 key购买 nike

如何获取第一个空格或点之前的子字符串?

喜欢

$string = "test.test"
//result = test

$string = "test doe"
//result = test

当然我可以使用 explode 两次,但我确信那不是最好的解决方案。

最佳答案

如果您想拆分几个不同的字符,请查看 preg_split

//split string on space or period:
$split=preg_split('/[ \.]/', $string);

关于php - 在两个定界字符之一之前隔离前导字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1063087/

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