gpt4 book ai didi

c - 如何通过正则表达式从名称=值格式的字符串中提取名称

转载 作者:太空宇宙 更新时间:2023-11-03 23:54:31 25 4
gpt4 key购买 nike

如何通过正则表达式从 name = value 格式的字符串中提取名称?我想从字符串中获取

saf asfgo   = ==slwin[(*]?
m||a=vd8228J)_+
sPiof+_ = vsfs=+":~lue3

只有名字:

saf asfgo
m||a
sPiof+_

前面没有等号和空格。

更新。我尝试使用 ^.+(?=[\t]*?=)更新2。对不起。我很快找到了决定:^.+?(?=[\t]*=)

最佳答案

试试这个

if ($subject =~ m/(?im)^([^=\r\n]+?)\s*=\s*([^=\r\n]+?)$/) {
$name = $1;
$value = $2;
} else {
$name = "";
$value = "";
}

关于c - 如何通过正则表达式从名称=值格式的字符串中提取名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11167812/

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