- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我有一个正则表达式,它在 sed
中给出一个结果,在 Perl(和 Ruby)中给出另一个结果。
我有字符串 one;two;;three
,我想突出显示由 ;
分隔的子字符串。所以我在 Perl 中执行以下操作:
$a = "one;two;;three";
$a =~ s/([^;]*)/[\1]/g;
print $a;
(或者,在 Ruby 中:print "one;two;;three".gsub(/([^;]*)/, "[\\1]")
。)
结果是:
[one][];[two][];[];[three][]
(我知道虚假空子串的原因。)
奇怪的是,当我在 sed
中运行相同的正则表达式时,我得到了不同的结果。我跑:
echo "one;two;;three" | sed -e 's/[^;]*/[\0]/g'
我得到:
[one];[two];[];[three]
造成这种不同结果的原因是什么?
编辑:
有人回答“因为 sed
不是 perl
”。我知道。我问这个问题的原因是因为我不明白 sed
如何很好地处理零长度匹配。
最佳答案
这是一个有趣且令人惊讶的边缘案例。
您的 [^;]*
模式可能匹配空字符串,所以它变成了一个哲学问题,即。,有多少个空字符串字符串介于两个字符之间:零个、一个还是多个?
sed
匹配明显遵循 “Zero–Length Regex Matches.” 的“在零长度正则表达式匹配后推进”部分中描述的理念。
Now the regex engine is in a tricky situation. We’re asking it to go through the entire string to find all non–overlapping regex matches. The first match ended at the start of the string, where the first match attempt began. The regex engine needs a way to avoid getting stuck in an infinite loop that forever finds the same zero-length match at the start of the string.
The simplest solution, which is used by most regex engines, is to start the next match attempt one character after the end of the previous match, if the previous match was zero–length.
也就是说,字符之间有零个空字符串。
上面这段话不是权威标准,引用这样的文档反而会更好。
检查 source of GNU sed
, 我们看到
/* Start after the match. last_end is the real end of the matched
substring, excluding characters that were skipped in case the RE
matched the empty string. */
start = offset + matched;
last_end = regs.end[0];
Perl 与 s///
的理念,Ruby 似乎共享这一点——所以下面的文档和示例使用 Perl 来表示两者——每个字符后只有一个空字符串。
“Regexp Quote–Like Operators” section of the perlop文档读取
The
/g
modifier specifies global pattern matching—that is, matching as many times as possible within the string.
s/([^;]*)/[\1]/g
的跟踪执行给出
开始。 “匹配位置”由 ^
表示,位于目标字符串的开头。
o n e ; t w o ; ; t h r e e
^
尝试匹配[^;]*
。
o n e ; t w o ; ; t h r e e
^
注意$1
中捕获的结果是one
。
尝试匹配[^;]*
。
o n e ; t w o ; ; t h r e e
^
重要教训:*
正则表达式量词总是成功,因为它表示“零个或多个”。在这种情况下,$1
中的子字符串是空字符串。
剩下的比赛如上进行。
作为一个敏锐的读者,您现在问自己,“自己,如果 *
总是成功,匹配如何在目标字符串的末尾终止,或者就此而言,它是如何得到的甚至超过了第一个零长度匹配?”
我们在 “Repeated Patterns Matching a Zero–length Substring” section of the perlre 中找到了这个尖锐问题的答案。文档。
However, long experience has shown that many programming tasks may be significantly simplified by using repeated subexpressions that may match zero–length substrings. Here’s a simple example being:
@chars = split //, $string; # // is not magic in split
($whitewashed = $string) =~ s/()/ /g; # parens avoid magic s// /Thus Perl allows such constructs, by forcefully breaking the infinite loop. The rules for this are different for lower–level loops given by the greedy quantifiers
*+{}
, and for higher-level ones like the/g
modifier orsplit
operator.…
The higher–level loops preserve an additional state between iterations: whether the last match was zero–length. To break the loop, the following match after a zero–length match is prohibited to have a length of zero. This prohibition interacts with backtracking … and so the second best match is chosen if the best match is of zero length.
通过添加否定的回顾断言,您可以过滤虚假的空匹配。
$ perl -le '$a = "one;two;;three";
$a =~ s/(?<![^;])([^;]*)/[\1]/g;
print $a;'
[one];[two];[];[three]
应用 Mark Dominus 称为 Randal’s Rule 的内容,“当您知道要保留什么时,请使用捕获。当您知道要丢弃什么时,请使用 split
。”你想扔掉分号,这样你的代码就变得更直接了
$ perl -le '$a = "one;two;;three";
$a = join ";", map "[$_]", split /;/, $a;
print $a;'
[one];[two];[];[three]
关于ruby - 为什么此正则表达式在 sed 中的运行方式与在 Perl/Ruby 中的运行方式不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20744716/
我有 table 像这样 -------------------------------------------- id size title priority
我的应用在不同的 Activity (4 个 Activity )中仅包含横幅广告。所以我的疑问是, 我可以对所有横幅广告使用一个广告单元 ID 吗? 或者 每个 Activity 使用不同的广告单元
我有任意(但统一)数字列表的任意列表。 (它们是 n 空间中 bin 的边界坐标,我想绘制其角,但这并不重要。)我想生成所有可能组合的列表。所以:[[1,2], [3,4],[5,6]] 产生 [[1
我刚刚在学校开始学习 Java,正在尝试自定义控件和图形。我目前正在研究图案锁,一开始一切都很好,但突然间它绘制不正确。我确实更改了一些代码,但是当我看到错误时,我立即将其更改回来(撤消,ftw),但
在获取 Distinct 的 Count 时,我在使用 Group By With Rollup 时遇到了一个小问题。 问题是 Rollup 摘要只是所有分组中 Distinct 值的总数,而不是所有
这不起作用: select count(distinct colA, colB) from mytable 我知道我可以通过双选来简单地解决这个问题。 select count(*) from (
这个问题在这里已经有了答案: JavaScript regex whitespace characters (5 个回答) 2年前关闭。 你能解释一下为什么我会得到 false比较 text ===
这个问题已经有答案了: 奥 git _a (56 个回答) 已关闭 9 年前。 我被要求用 Javascript 编写一个函数 sortByFoo 来正确响应此测试: // Does not cras
所以,我不得不说,SQL 是迄今为止我作为开发人员最薄弱的一面。也许我想要完成的事情很简单。我有这样的东西(这不是真正的模型,但为了使其易于理解而不浪费太多时间解释它,我想出了一个完全模仿我必须使用的
这个问题在这里已经有了答案: How does the "this" keyword work? (22 个回答) 3年前关闭。 简而言之:为什么在使用 Objects 时,直接调用的函数和通过引用传
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: what is the difference between (.) dot operator and (-
我真的不明白这里发生了什么但是: 当我这样做时: colorIndex += len - stopPos; for(int m = 0; m < len - stopPos; m++) { c
思考 MySQL 中的 Group By 函数的最佳方式是什么? 我正在编写一个 MySQL 查询,通过 ODBC 连接在 Excel 的数据透视表中提取数据,以便用户可以轻松访问数据。 例如,我有:
我想要的SQL是这样的: SELECT week_no, type, SELECT count(distinct user_id) FROM group WHERE pts > 0 FROM bas
商店表: +--+-------+--------+ |id|name |date | +--+-------+--------+ |1 |x |Ma
对于 chrome 和 ff,当涉及到可怕的 ie 时,这个脚本工作完美。有问题 function getY(oElement) { var curtop = 0; if (oElem
我现在无法提供代码,因为我目前正在脑海中研究这个想法并在互联网上四处乱逛。 我了解了进程间通信和使用共享内存在进程之间共享数据(特别是结构)。 但是,在对保存在不同 .c 文件中的程序使用 fork(
我想在用户集合中使用不同的功能。在 mongo shell 中,我可以像下面这样使用: db.users.distinct("name"); 其中名称是用于区分的集合字段。 同样我想要,在 C
List nastava_izvjestaj = new List(); var data_context = new DataEvidencijaDataContext();
我的 Rails 应用程序中有 Ransack 搜索和 Foundation,本地 css 渲染正常,而生产中的同一个应用程序有一个怪癖: 应用程序中的其他内容完全相同。 我在 Chrome 和 Sa
我是一名优秀的程序员,十分优秀!