正则表达式 – _ @ [^ @] * @在bash中

前端之家收集整理的这篇文章主要介绍了正则表达式 – _ @ [^ @] * @在bash中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
每一个,我在 shell脚本中都有这个表达式的问题:

expr "$VERSION" : "_@[^@]*@"

谁能告诉我“@”代表什么?

解决方法

来自man expr:

expr1 : expr2
         The ``:'' operator matches expr1 against expr2,which must be a
         regular expression.  The regular expression is anchored to the
         beginning of  the string with an implicit ``^''.  expr expects
         "basic" regular expressions,see re_format(7) for more informa-
         tion on regular expressions.

@只是@,因为它在正则表达式中没有特殊含义.从而,

expr _@foo@ : "_@[^@]*@"

将成功,并输出6(它是匹配字符的数量);而

expr _x@foo@ : "_@[^@]*@"

输出0并返回$?中的失败代码,因为它无法匹配任何内容.

如果您不熟悉正则表达式,则示例中给出的是:下划线(_)后跟两个符号(@)夹着任意数量的非符号字符.

猜你在找的正则表达式相关文章