namespace YBEE.EQM.Core; public static class StringUtil { public static string ClearWhite(string str) { return str.Trim().Replace(" ", "").Replace("\n", "").Replace("\r", "").Replace("\t", ""); } }