StringUtil.cs 222 B

123456789
  1. namespace YBEE.EQM.Core;
  2. public static class StringUtil
  3. {
  4. public static string ClearWhite(string str)
  5. {
  6. return str.Trim().Replace(" ", "").Replace("\n", "").Replace("\r", "").Replace("\t", "");
  7. }
  8. }