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