作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请问哪个正则表达式能正确匹配?
我想识别不以特定文本 (_array) 结尾的字符串。我试过使用负前瞻,但我无法让它工作。 (请注意,显而易见的答案是执行相反的操作 (m{_array$}),但我不想这样做是有原因的)。
use strict;
use warnings;
while(<DATA>) {
#
## If the string does not end with '_array' print No, otherwise print Yes
m{(?!_array)$} ? print "No = " : print "Yes = ";
print;
}
__DATA__
chris
hello_world_array
another_example_array
not_this_one
hello_world
我想要的输出应该是:
No = chris
Yes = hello_world_array
Yes = another_example_array
No = not_this_one
No = hello_world
最佳答案
你需要在背后消极看待。即,您想搜索不在 _array
之前的字符串结尾。
请注意,您需要先chomp
该行,因为$
将匹配尾随换行符前后。
条件运算符旨在返回一个值 - 它不是if
语句的简写。
use strict;
use warnings;
while (<DATA>) {
chomp;
# If the string does not end with '_array' print No, otherwise print Yes
print /(?<!_array)$/ ? "No = $_\n" : "Yes = $_\n";
}
__DATA__
chris
hello_world_array
another_example_array
not_this_one
hello_world
输出
No = chris
Yes = hello_world_array
Yes = another_example_array
No = not_this_one
No = hello_world
关于regex - Perl 正则表达式匹配字符串不以某物结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14234932/
当我在我的 Angular 应用程序中创建一个常量时,我想访问一个 $injectable。 这样的事情可能吗?注入(inject)剂如何申报? myApp.constant('myCon
我正在尝试提取称为tests.stats()的个人功能的输出 我用return语句创建一个函数: return(c(list.test.1, list.test.2 ,list.test.3,
我是一名优秀的程序员,十分优秀!