gpt4 book ai didi

php - 使用 regex/php 读取引号内的文本

转载 作者:可可西里 更新时间:2023-11-01 13:42:21 24 4
gpt4 key购买 nike

我有一个文字标题是

This User "The Title Of The Post"

我只想获取引号内的内容,并将其存储在变量中。我将如何使用正则表达式和 php 执行此操作?

最佳答案

http://www.php.net/preg_match

<?php
$x = 'This User "The Title Of The Post"';

preg_match('/".*?"/', $x, $matches);

print_r($matches);

/*
Output:
Array
(
[0] => "The Title Of The Post"
)

*/
?>

关于php - 使用 regex/php 读取引号内的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1365620/

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