gpt4 book ai didi

regex - 完全匹配 Perl 字符串中包含的以 $(或特殊字符)开头的单词

转载 作者:行者123 更新时间:2023-12-04 05:54:39 25 4
gpt4 key购买 nike

如何从字符串中精确匹配像 $abc 这样的单词 "this is $$abc abc$abc $abc abc_$abc_ing";

最佳答案

您可以使用正则表达式:

(\$[a-z]+)

说明:

(        : Start of group
\$ : A literal $. Since $ is a metacharacter we escape it.
[a-z]+ : one or more letters that is a word. You can use the modifier i
to match uppercase letters aswell.
) : End of grouping

关于regex - 完全匹配 Perl 字符串中包含的以 $(或特殊字符)开头的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5176623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com