- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当trans
方法与正则表达式一起使用,例如 /^/
,挂了,再也回不去了!
for (-9, -6 ... 0, 2 , 4 ... 10).rotor( 2 => -1) {
.join(',').trans(/^/ => '[', /$/ => ')' ).say;
}
[-9,-6)
[-6,-3)
[-3,0)
[0,2)
[2,4)
[4,6)
[6,8)
[8,10)
trans
必须至少消耗一个字符:
> '123abc345'.trans( /<?after 34> 5$/ => '-')
123abc34-
> '123abc345'.trans( /<?after 34> 5/ => '-')
123abc34-
> '123abc345'.trans( /<?after 345> $/ => '-')
123abc345
> '123abc345'.trans( /^ \d+ <( \w+ )> $/ => '-')
123-
最佳答案
我同意它必须消耗一个字符。
来自 a doc I've written on trans
:
If one of the matchers on the left hand side is a null string or regex, and no other matchers match at a given position in the input string then
.trans
goes into an infinite loop.
[this doc] may be a step toward updating the official doc and/or cleaning up the relevant spec tests and/or functionality.
trans
有几个问题这可能涉及错误,以上是我在文档中明确确定的唯一内容。 (我把我提到的这个问题放在了一个奇怪的地方。确实文档组织有点奇怪。我想我当时厌倦了反式工作,并打算再次返回以取得进一步进展而忘记了直到你刚刚问了你的问题。)
trans
的情况。根本不使用任何正则表达式,只有一个导致无限循环的空字符串匹配器。 (零长度匹配正则表达式导致循环的场景可能是一个单独的错误,应该通过修改正则表达式引擎代码来修复。我不确定。)
/^/
-- 匹配字符串的开头 -- 使用非
trans
构造以确认它做正确的事情:
my $foo = 'x';
say $foo ~~ s/^/end/; # 「」
say $foo; # endx
/^/
火柴;这是一个零长度匹配/捕获;
s///
构造插入替换字符串。一切似乎都很好。
trans
行为要复杂得多。这是一个严重“仪表化”的示例,其匹配模式与您的示例很接近,并且也是
trans
的一部分:
sub start-regex ($which,$/) {
say "start regex $which, ++count = {++$count}, .pos = {$/.pos}"
}
sub end-regex ($which,$/) {
say "end regex $which, .pos = {$/.pos}, matched = '$/' \n"
}
sub replace ($which,$/) {
say "regex $which replaces $/ at .pos = $/.pos()"; $which
}
my $foo = 'x';
my $count;
say $foo.trans:
/ { start-regex 1, $/ } ^ { end-regex 1, $/ } /
=> { replace 1, $/ },
/ { start-regex 2, $/ } . <?{ $count > 0 }> $ { end-regex 2, $/ } /
=> { replace 2, $/ }
start regex 1, ++count = 1, .pos = 0
end regex 1, .pos = 0, matched = ''
start regex 2, ++count = 2, .pos = 0
end regex 2, .pos = 1, matched = 'x'
regex 2 replaces x at .pos = 1
start regex 2, ++count = 3, .pos = 0
end regex 2, .pos = 1, matched = 'x'
start regex 1, ++count = 4, .pos = 1
start regex 2, ++count = 5, .pos = 1
2
$count > 0
改变至
$count > 2
事情变得非常不同。它进入一个无限循环,像这样开始:
start regex 1, ++count = 1, .pos = 0
end regex 1, .pos = 0, matched = ''
start regex 2, ++count = 2, .pos = 0
start regex 2, ++count = 3, .pos = 1
regex 1 replaces at .pos = 0
start regex 1, ++count = 4, .pos = 0
end regex 1, .pos = 0, matched = ''
start regex 1, ++count = 5, .pos = 0
end regex 1, .pos = 0, matched = ''
regex 1 replaces at .pos = 0
start regex 1, ++count = 6, .pos = 0
.pos
至 1
(!?) 并再次调用第二个正则表达式!我不知道为什么。它又失败了。 trans
逻辑是不接受长度为零的正则表达式! 关于raku - trans 函数在使用单个 `^` 或 `$` 时永远挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57660797/
虽然总是可以使用 mixin 或方法覆盖来修改 Bool 强制转换,但默认情况下哪些值被认为是真值,哪些值被认为是假值? 注意:这个问题是 asked previously ,但不幸的是它太旧了,它的
也许我遗漏了一些东西,但我想知道这段代码是否有充分的理由 编译 role L { method do-l (Int, Int --> Int ) { ... } } class A does L
FAQ:在 Raku 中如何检查列表是否为空? 是否有比以下更惯用的方法: my @l = (); say @l.elems == 0; say @l == (); say @l.Bool; doc
FAQ:在 Raku 中,如何从列表中删除重复项以仅获取唯一值? my $arr = [1, 2, 3, 2, 3, 1, 1, 0]; # desired output [1, 2, 3, 0] 最
我使用 Raku 进行一些计算,因为它有很好的数字类型。但是,我在使用“.raku”时遇到问题 say (1/6+1/6).raku # 我们得到这个。然而, say (1/10+1/10).raku
常见问题解答:在 Raku 中,如何将字符串转换为十六进制的字节列表(即十六进制解码器) 目前,我有: say "I ❤ 🦋".encode.list.map(*.base(16)); # (49
在 1990 年代和 2000 年代,编程语言爱好者几乎没有讨论过分隔延续的话题。它最近重新成为编程语言讨论中的一个主要问题。 我希望有人至少可以权威地说出 Rakudo 背后的延续(与 Raku 相
我选择在 Perl 6 中重新设计我之前代码的一部分,在这种情况下是一个棋盘。前两个类运行良好(或者至少工作正常,我知道的很少,我无法确定它们的正确性) ,但我坚持第三。这是代码: #!/home/h
如何重现数组的每个元素 x 次? 例如 for my @a=;和 x=5 ,结果应该是这样的 (blu blu blu blu blu red red red red red) 我想出了这个 say
我正在尝试使用一个变量并在一个步骤中为其分配一个表达式: 给定的(示例)代码 my @l=; my $i=0; while $i ; my $i=0; say @l[$i =~ ($i+1) * 2]
我想连续打印偶数,但我不能。 use Terminal::ANSIColor; # Wanna print even numbers in red for { $_ %2 == 0 ?? say c
目前(截至 2020 年 8 月)Rakudo 不在编译时对函数的返回值进行类型检查;也就是说,它不提供函数满足其返回约束的静态保证。具体来说,以下两个函数都编译为 Raku: sub get-int
自从我上次更新我在 Raku 生态系统中的一个模块以来已经有一段时间了。我需要更新中央注册表文件/存储库还是会自动检测到更新? 最佳答案 修改版本号后,我等了一个小时左右,然后 zef可以安装模块 -
有人能告诉我如何在正在执行的 Raku 脚本中找到脚本的路径吗? 我正在 Raku 中寻找与此 Perl 代码等效的代码: $path=abs_path($0); 最佳答案 使用 $*PROGRAM见
Raku的正则表达式有两种交替形式:|和||。有什么区别 ? say 'foobar' ~~ / foo || foobar / # 「foo」 say 'foobar' ~~ / foo | fo
我故意避免使用术语 defined因为一个变量很可能有一个定义的值,但 .defined方法将返回 false(例如,失败)。 有什么方法可以确定变量是否已为其设置了值? my $foo; say $
我从/path/to/data 运行/home/foo/bar.p6 并显示“Segmentation fault (core dumped)” 我在/var/crash 或我的主目录或当前工作目录中
在 cli 上,在 linux 中,cp -p保留文件上修改/访问的时间戳。是否可以直接在 Raku 中执行相同操作? Rosetta 示例使用 Nativecall,它可以通过系统调用来完成,但看起
我想重用 token parameter来自 Perl6::Grammar在我的自定义俚语中添加“自定义参数”参数不带 cargo 培养 . 我的意思是说: my $main-grammar = $*
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 去年关闭。 Improve this questio
我是一名优秀的程序员,十分优秀!