本文介绍了在Linux上的C中使用正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
团队,
您能告诉我这种特殊模式的含义吗?
我只是一个初学者,在一个网站中发现了这个例子
通过regex.h提供reg表达的示例
Hi Team,
Can you please tell what is the meaning of this particular pattern.
I am just being a beginner and found this as an example in one of the site
providing example for reg expression through regex.h
char *PatternSearch = "[?&]XYZ=\\([[:alnum:]]*\\)";
如果您可以通过示例解释此模式的目的,请感谢您的答复
问候
Appreciate your response if you could explain what does this pattern look for with an example
Regards,
推荐答案
?XYZ=(/*any characters in here*/)
或
or
&XYZ=(/*any characters in here*/)
这篇关于在Linux上的C中使用正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!