本文介绍了正则表达式正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





是什么意思

value = System.Text.RegularExpressions.Regex.Replace(value,\ \D,);



请举例解释。



谢谢。

Hi,

what the meaning of
value = System.Text.RegularExpressions.Regex.Replace(value, "\\D", "");

please explain with example.

thank you.

推荐答案

来自 []:

它将所有与正则表达式模式匹配的字符串替换为指定输入字符串中指定的替换字符串。

It replaces all strings that match a regular expression pattern with a specified replacement string in a specified input string.





参见示例: [ ]。



- Amy


这篇关于正则表达式正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 04:23