C#根据字典替换字符串

时间:2016-09-24 11:01:59

标签: c# string

我想以自定义的方式逃避自定义符号,例如

',' -> '__Comma__'
'?' -> '__QuestionMark__'
'/' -> '__Slash__'
...

最快的方法是什么?

Related python version

1 个答案:

答案 0 :(得分:0)

StringBuilder类是为修改相同的字符串对象而设计的。

var builder = new StringBuilder(yourText);
builder.Replace(",", "__Comma__");

StringBuilder.Replace Method (String, String)