string txt="asdjsfk/aaaaaaaaa";
如何判断这个字符串中包含/,
如果包含/,
就在斜杠前面加上字符‘x’
1、使用if语句。
if(txt.Contains("/")){txt = txt.Replace("/", "x/");}
2、使用条件运算符(?:)。
txt = txt.Contains("/") ? txt.Replace("/", "x/") : txt;
string txt="asdjsfk/aaaaaaaaa";
如何判断这个字符串中包含/,
如果包含/,
就在斜杠前面加上字符‘x’
1、使用if语句。
if(txt.Contains("/")){txt = txt.Replace("/", "x/");}
2、使用条件运算符(?:)。
txt = txt.Contains("/") ? txt.Replace("/", "x/") : txt;