gpt4 book ai didi

php - 使用正则表达式分隔组中的字符串

转载 作者:搜寻专家 更新时间:2023-10-31 22:03:11 24 4
gpt4 key购买 nike

我想像这样解析字符串:

[NP Amanda Brumfield],[NP the estranged daughter][PP of][NP actor Billy Bob Thornton],[VP was found][ADJP guilty][PP of][VP aggravated][NP manslaughter][PP of][NP a child]

在所有这种情况下,识别这些组:

[NP Amanda Brumfield][NP the estranged daughter][PP of][NP actor Billy Bob Thornton]
,
[ADJP guilty][PP of]
and
[NP manslaughter][PP of][NP a child]

换句话说,它应该使用字符串[VP\w+]来分割字符串。

我将如何为此编写正则表达式?

最佳答案

@Casimir et Hippolyte 提到使用 preg_split(),这是正确的。以下将按照您请求的方式拆分给定的输入:

$parts = preg_split('/\[VP\s+(?:[^\]])+\]/', $input);

该模式应该允许在初始 VP 之后的几乎所有内容以及在结束 ] 之前的一个或多个空格。 PHP 也应该适用于非捕获括号。

关于php - 使用正则表达式分隔组中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24002902/

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