gpt4 book ai didi

regex - Perl - 匹配双引号文本的正则表达式

转载 作者:行者123 更新时间:2023-12-02 08:49:30 25 4
gpt4 key购买 nike

请在正则表达式匹配方面需要一些帮助。我正在尝试匹配一个双引号文本字符串,在一个大字符串中,它本身可以包含成对的双引号!这是一个例子:

"Please can ""you"" match this"

下面显示了我的问题的更完整示例以及到目前为止我所遇到的问题。下面的代码仅在散列中正确存储了“paris”,由于双引号对提前终止了长描述,因此 london 和 melbourne 都不正确。

非常感谢任何帮助。

use strict;
use warnings;
use Data::Dumper;

my %hash;

my $delimiter = '/begin CITY';
local $/ = $delimiter;

my $top_of_file = <DATA>;
my $records=0;

while(<DATA>) {

my ($section_body) = m{^(.+)/end CITY}ms;

$section_body =~ s{/\*.*?\*/}{}gs; # Remove any comments in string

$section_body =~ m{ ^\s+(.+?) ## Variable name is never whitespace seperated
## Always underscored. Akin to C variable names

\s+(".*?") ## The long description can itself contain
## pairs of double quotes ""like this""

\s+(.+) ## Everything from here can be split on
## whitespace

\s+$
}msx;

$hash{$records}{name} = $1;
$hash{$records}{description} = $2;

my (@data) = split ' ', $3;

@{ $hash{$records} }{qw/ size currency /} = @data;

++$records;
}

print Dumper(\%hash);


__DATA__
Some header information

/begin CITY

london /* city name */
"This is a ""difficult"" string to regex"
big
Sterling

/end CITY

/begin CITY paris
"This is a simple comment to grab."
big
euro /* the address */
/end CITY


/begin CITY

Melbourne
"Another ""hard"" long description to 'match'."
big
Dollar

/end CITY

最佳答案

改变这个:

".*?"

为此:

"(?>(?:[^"]+|"")*)"

此外,您使用非贪婪匹配也不是很安全。像这样:

\s+(.+?)   ## Variable name is never whitespace seperated
## Always underscored. Akin to C variable names

很可能会在变量名中包含空格,如果 Perl 发现那是唯一的匹配方式。 (它将更喜欢在包含空格之前停止,但它不做任何保证。)

而且您应该始终检查以确保 m{} 找到了一些东西。如果您确定它总是匹配,那么您可以添加一个or die 来验证这一点。

关于regex - Perl - 匹配双引号文本的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9592039/

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