我正在尝试从长字符串文本中提取特定信息。正文是:
评分: 明确 得分: 17 标签: 围裙 金发女郎 brown_eyes itaru_chokusha kirigaya_kazuto long_hair 乳头 no_bra nopan 裸体 Sword_art_online yuuki_asuna 用户: openui
我想将它们提取为
- 评级:明确
- 得分:17
- Tags: 围裙blonde_hair brown_eyes itaru_chokusha kirigaya_kazuto long_hair Sword_art_online yuuki_asuna
- 用户:openui
我尝试的代码只能取出标题
$imageTitle = "Rating: Explicit Score: 17 Tags: apron blonde_hair brown_eyes itaru_chokusha kirigaya_kazuto long_hair nipples no_bra nopan nude sword_art_online yuuki_asuna User: openui";
preg_match_all("/[a-z]{1,}\:\s/i", $imageTitle, $matches);
var_dump($matches);
我最后尝试使用(.*)
,但它给出了整个文本。这个只提取一个词
preg_match_all("/[a-z]{1,}\:\s[a-z0-9]{1,}/i", $imageTitle, $matches);
//Output
array (size=1)
0 =>
array (size=4)
0 => string 'Rating: Explicit' (length=16)
1 => string 'Score: 17' (length=9)
2 => string 'Tags: apron' (length=11)
3 => string 'User: openui' (length=12)
如何提取剩余信息?如果可能的话,也可以作为数组索引和值。