在匹配单词的开头拆分字符串

发布于 2024-11-10 04:35:11 字数 119 浏览 0 评论 0原文

我试图找出什么函数可以分割给定的字符串,因此我想出了一个以匹配的单词开头的子字符串和另一部分。自从我开始搜索以来已经有一段时间了,我感到绝望,有这么多关于分割字符串的方法的函数,我只是希望你的帮助找出进行这种分割的最佳方法。

I'm trying to find out what function can split a given string so I come up with one substring beginning with the matched word and the other part. It's got a bit of a long since I started searching and I feel desperate, well so many functions on ways to split a string I just want your help to figure out what's the best way to do this splitting.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

巷子口的你 2024-11-17 04:35:11

PHP 的 strstr 可以简单地为您做到这一点

用法是:

 $fragment = strstr( $string, $search );

如果您正在运行 PHP 5.3 来获取该部分在搜索词之前,您可以使用与以下相同的功能:

 $fragment_before = strstr( $string, $search, true );

PHP's strstr can do this for you simply

Usage is:

 $fragment = strstr( $string, $search );

If you're running PHP 5.3 to get the part before the search term you can use the same function as:

 $fragment_before = strstr( $string, $search, true );
梦一生花开无言 2024-11-17 04:35:11
$str = 'hjae adj xyz asdj asdjs';

$search = 'xyz';
if(($pos = strpos($str, $search)) !== false)
{
    $before = substr($str, 0, $pos); // hjae adj 
    $after = substr($str, $pos); // xyz asdj asdjs
}
$str = 'hjae adj xyz asdj asdjs';

$search = 'xyz';
if(($pos = strpos($str, $search)) !== false)
{
    $before = substr($str, 0, $pos); // hjae adj 
    $after = substr($str, $pos); // xyz asdj asdjs
}
街角迷惘 2024-11-17 04:35:11

有几种分割字符串的方法。我不确定你到底想要什么,但我建议你检查 preg_split< /a> 和 爆炸

There are a few ways to split a string. I'm not sure what you exactly want, but I would advise you to check preg_split and explode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文