要返回字符串中所有单词的方法,可以使用正则表达式和 PHP 的 preg_match_all 函数。
下面是具体的步骤:
1. 使用 preg_match_all 函数和正则表达式匹配所有单词
$string = "Hello world! This is a test string.";
preg_match_all("/\b\w+\b/", $string, $matches);
在上面的示例中,我们使用 "\b\w+\b" 正则表达式来匹配所有的单词。其中,"\b" 匹配单词边界,"\w+" 匹配一个或多个单词字符。最后,我们把匹配到的结果存储在 $matches 数组中。
2. 打印所有匹配到的单词
foreach ($matches[0] as $match) {
echo $match . "\n";
}
上面的代码中,我们遍历 $matches 数组中的第一个元素(也就是所有匹配到的字符串),并打印出来。
以下是完整的示例程序:
$string = "Hello world! This is a test string.";
preg_match_all("/\b\w+\b/", $string, $matches);
foreach ($matches[0] as $match) {
echo $match . "\n";
}
运行上面的代码,输出结果如下:
Hello
world
This
is
a
test
string
还可以用 implode 函数将所有匹配到的字符串连接起来,例如:
$string = "Hello world! This is a test string.";
preg_match_all("/\b\w+\b/", $string, $matches);
echo implode(' ', $matches[0]);
上面的代码中,我们使用空格连接所有匹配到的字符串并打印出来。
输出结果如下:
Hello world This is a test string
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:php返回字符串中所有单词的方法 - Python技术站