从字符串Asp.net中删除逗号

本文关键字:删除 net 字符串 Asp | 更新日期: 2023-09-27 18:04:15

我有字符串eg。abc…

   TextBox box2 = (TextBox)GV_Assoceries.Rows[rowIndex].Cells[2].FindControl("TextBox2");
   box2.text;

基本上我通过onclick事件创建gridview的新行,并设置gridview行的前一个数据,当每个新行将被添加,然后它将设置前一行的前一个数据,但不知道为什么我在每个字符串中得到逗号..

box2。文本有一个值",,,,,abc",我想从字符串中只删除逗号,我不希望任何循环来做这个。

是否有任何函数或方法从字符串

从字符串Asp.net中删除逗号

中删除特定字符

Try with

box2.text.Replace(",", String.Empty)

它可能会慢一些,但肯定会有帮助

 string abc = "....abc";
 string trimmedResult = new String(abc.Where(Char.IsLetterOrDigit).ToArray());

点击我你应该参考这个

MSDN例子

using System;
public class Example
{
   public static void Main()
   {
      String header = "* A Short String. *";
      Console.WriteLine(header);
      Console.WriteLine(header.Trim( new Char[] { ' ', '*', '.' } ));
   }
}
// The example displays the following output: 
//       * A Short String. * 
//       A Short String

其中new Char[]是要从名为header的字符串中删除的字符数组