欢迎访问服务器技术网-www.fuwuqijishu.com

C# 如何去除字符串中标点符号左右的空格,

软件 fuwuqijishu 2年前 (2022-10-01) 9次浏览 0个评论 扫描二维码

关于C# 如何去除字符串中标点符号左右的空格,例如:2003 , 10 ( 11 ) : 112,变成2003,10(11):112求大神指点的问题

//利用替换函数replace():
//replace(string oldStr, string newStr);
string strOld=”2003 , 10 ( 11 ) : 112″;
strOld=strOld.replace(” (“,”(“);
strOld=strOld.replace(“) “,”)”);
//bcakang所说的string.trim()方法是去掉字符串收尾的空格,不会去除中间包含的空格,如果用replace将所有空格替换成空也不符合你的修改要求,结合你要去空格的符号像上面例子一样使用就可以解决了

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-3013.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900