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

问题描述

使用正则表达式如何将字符(字母)更改为#"

123456789please987654321help12345me123
123456789 ###### 987654321 #### 12345 ## 123-result

using regular expression how do i change characters(letters) into "#"

123456789please987654321help12345me123
123456789######987654321####12345##123 - result

推荐答案

Regex regex = new Regex("[a-zA-Z]");
string result = regex.Replace(InputText,"#");



获取 Expresso [ ^ ]-它是免费的,它可以检查并生成正则表达式.



Get a copy of Expresso [^] - it''s free, and it examines and generates Regular expressions.



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

08-11 13:18