Perl 正则表达式简化

发布于 2024-11-01 19:21:51 字数 156 浏览 1 评论 0原文

我想简化以下陈述。

if($_=~/^([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F])/)

有没有其他方法可以编写上述语句而不重复 [0-9a-fA-F] n 次?

I want to simplify the following statement.

if($_=~/^([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F])/)

Is there an alternate way I can write the above statement without repeating [0-9a-fA-F] n times ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

離人涙 2024-11-08 19:21:51

您可以使用量词

{n} 精确匹配 n 次

if (/^([0-9a-fA-F]{5})/)

同样,您可以使用 POSIX 字符类

xdigit 任何十六进制数字
(“[0-9a-fA-F]”)。

if (/^([[:xdigit:]]{5})/)

You can use Quantifiers

{n} Match exactly n times

if (/^([0-9a-fA-F]{5})/)

Similarly, you can use a POSIX character class

xdigit Any hexadecimal digit
("[0-9a-fA-F]").

if (/^([[:xdigit:]]{5})/)
薄暮涼年 2024-11-08 19:21:51

试试这个

if($_=~/^([0-9a-fA-F]{5})/)

Try this

if($_=~/^([0-9a-fA-F]{5})/)
第几種人 2024-11-08 19:21:51

甚至

if( /^([0-9a-fA-F]{5})/ )

or even

if( /^([0-9a-fA-F]{5})/ )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文