正则表达式匹配一个或多个反斜杠和 +迹象
我正在编写一个正则表达式来匹配一个或多个 \
和一个或多个 +
符号。 这是我到目前为止所拥有的,它看起来不正确
/\\+\++/
my $test = "\+";
if( $test =~ /\\+\++/)
{
print "yes";
}
我已经尝试过这段代码,但它不起作用
I am writing a regular expression to match one or more \
and one or more +
signs.
This is what I have so far and it doesn't look like its right
/\\+\++/
my $test = "\+";
if( $test =~ /\\+\++/)
{
print "yes";
}
Ive tried this code and it doesn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说看起来不错:
Looks fine to me:
您的表达式按原样就可以了,但如果整个字符串仅由 \ & 组成,您可能需要添加锚点。 + 字符。
You're expression is fine as is, though you may want to add anchors if the whole string should be made up of only \ & + characters.