StringUtils.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Web;
  7. namespace Tede.Data.Tests.Utils
  8. {
  9. public static class StringUtils
  10. {
  11. public static string GetCacheKey(string nameofClass, params string[] values)
  12. {
  13. var key = $"SS.Caching.{nameofClass}";
  14. if (values == null || values.Length <= 0) return key;
  15. return values.Aggregate(key, (current, t) => current + ("." + t));
  16. }
  17. public static string GetContentTableName(int siteId)
  18. {
  19. return $"siteserver_Content_{siteId}";
  20. }
  21. public static bool Equals(string s1, string s2)
  22. {
  23. return s1 == s2 || string.IsNullOrEmpty(s1) && string.IsNullOrEmpty(s2);
  24. }
  25. public static bool EqualsIgnoreCase(string s1, string s2)
  26. {
  27. if (string.IsNullOrEmpty(s1) && string.IsNullOrEmpty(s2))
  28. return true;
  29. if (string.IsNullOrEmpty(s1) || string.IsNullOrEmpty(s2) || s2.Length != s1.Length)
  30. return false;
  31. return string.Compare(s1, 0, s2, 0, s2.Length, StringComparison.OrdinalIgnoreCase) == 0;
  32. }
  33. public static bool EndsWith(string s, char c)
  34. {
  35. int length = s.Length;
  36. if (length != 0)
  37. return (int)s[length - 1] == (int)c;
  38. return false;
  39. }
  40. public static bool EndsWithIgnoreCase(string s1, string s2)
  41. {
  42. int indexA = s1.Length - s2.Length;
  43. if (indexA < 0)
  44. return false;
  45. return string.Compare(s1, indexA, s2, 0, s2.Length, StringComparison.OrdinalIgnoreCase) == 0;
  46. }
  47. public static bool StartsWith(string s, char c)
  48. {
  49. if (s.Length != 0)
  50. return (int)s[0] == (int)c;
  51. return false;
  52. }
  53. public static bool StartsWithIgnoreCase(string s1, string s2)
  54. {
  55. if (string.IsNullOrEmpty(s1) || string.IsNullOrEmpty(s2) || s2.Length > s1.Length)
  56. return false;
  57. return string.Compare(s1, 0, s2, 0, s2.Length, StringComparison.OrdinalIgnoreCase) == 0;
  58. }
  59. public static bool ArrayEquals(string[] a, string[] b)
  60. {
  61. if (a == null != (b == null))
  62. return false;
  63. if (a == null)
  64. return true;
  65. int length = a.Length;
  66. if (length != b.Length)
  67. return false;
  68. for (int index = 0; index < length; ++index)
  69. {
  70. if (a[index] != b[index])
  71. return false;
  72. }
  73. return true;
  74. }
  75. public static string[] ObjectArrayToStringArray(object[] objectArray)
  76. {
  77. string[] strArray = new string[objectArray.Length];
  78. objectArray.CopyTo((Array)strArray, 0);
  79. return strArray;
  80. }
  81. //------------------------------//
  82. public static bool IsMobile(string val)
  83. {
  84. return Regex.IsMatch(val, @"^1[3456789]\d{9}$", RegexOptions.IgnoreCase);
  85. }
  86. public static bool IsEmail(string val)
  87. {
  88. return Regex.IsMatch(val, @"^\w+([-_+.]\w+)*@\w+([-_.]\w+)*\.\w+([-_.]\w+)*$", RegexOptions.IgnoreCase);
  89. }
  90. public static bool IsNumber(string val)
  91. {
  92. const string formatNumber = "^[0-9]+$";
  93. return Regex.IsMatch(val, formatNumber);
  94. }
  95. public static bool IsDateTime(string val)
  96. {
  97. const string formatDate = @"^((((1[6-9]|[2-9]\d)\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\d|3[01]))|(((1[6-9]|[2-9]\d)\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\d|30))|(((1[6-9]|[2-9]\d)\d{2})-0?2-(0?[1-9]|1\d|2[0-8]))|(((1[6-9]|[2-9]\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-))$";
  98. const string formatDateTime = @"^((((1[6-9]|[2-9]\d)\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\d|3[01]))|(((1[6-9]|[2-9]\d)\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\d|30))|(((1[6-9]|[2-9]\d)\d{2})-0?2-(0?[1-9]|1\d|2[0-8]))|(((1[6-9]|[2-9]\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-)) (20|21|22|23|[0-1]?\d):[0-5]?\d:[0-5]?\d$";
  99. return Regex.IsMatch(val, formatDate) || Regex.IsMatch(val, formatDateTime);
  100. }
  101. public static bool In(string strCollection, int inInt)
  102. {
  103. return In(strCollection, inInt.ToString());
  104. }
  105. public static bool In(string strCollection, string inStr)
  106. {
  107. if (string.IsNullOrEmpty(strCollection)) return false;
  108. return strCollection == inStr || strCollection.StartsWith(inStr + ",") || strCollection.EndsWith("," + inStr) || strCollection.IndexOf("," + inStr + ",", StringComparison.Ordinal) != -1;
  109. }
  110. public static bool Contains(string text, string inner)
  111. {
  112. return text?.IndexOf(inner, StringComparison.Ordinal) >= 0;
  113. }
  114. public static bool ContainsIgnoreCase(string text, string inner)
  115. {
  116. if (string.IsNullOrEmpty(text) || string.IsNullOrEmpty(inner)) return false;
  117. return text.ToLower().IndexOf(inner.ToLower(), StringComparison.Ordinal) >= 0;
  118. }
  119. public static bool ContainsIgnoreCase(IList<string> list, string target)
  120. {
  121. if (list == null || list.Count == 0) return false;
  122. return list.Any(element => EqualsIgnoreCase(element, target));
  123. }
  124. public static string Trim(string text)
  125. {
  126. return string.IsNullOrEmpty(text) ? string.Empty : text.Trim();
  127. }
  128. public static string TrimSlash(string text)
  129. {
  130. return string.IsNullOrEmpty(text) ? string.Empty : text.Trim().Trim('/');
  131. }
  132. public static string TrimAndToLower(string text)
  133. {
  134. return string.IsNullOrEmpty(text) ? string.Empty : text.ToLower().Trim();
  135. }
  136. public static string Remove(string text, int startIndex)
  137. {
  138. if (string.IsNullOrEmpty(text)) return string.Empty;
  139. if (startIndex < 0)
  140. {
  141. throw new ArgumentOutOfRangeException(nameof(startIndex));
  142. }
  143. if (startIndex >= text.Length)
  144. {
  145. throw new ArgumentOutOfRangeException(nameof(startIndex));
  146. }
  147. return text.Substring(0, startIndex);
  148. }
  149. public static string GetGuid()
  150. {
  151. return Guid.NewGuid().ToString();
  152. }
  153. public static string GetShortGuid()
  154. {
  155. long i = 1;
  156. foreach (var b in System.Guid.NewGuid().ToByteArray())
  157. {
  158. i *= b + 1;
  159. }
  160. return $"{i - DateTime.Now.Ticks:x}";
  161. }
  162. public static string GetShortGuid(bool isUppercase)
  163. {
  164. long i = 1;
  165. foreach (var b in System.Guid.NewGuid().ToByteArray())
  166. {
  167. i *= b + 1;
  168. }
  169. string retval = $"{i - DateTime.Now.Ticks:x}";
  170. return isUppercase ? retval.ToUpper() : retval.ToLower();
  171. }
  172. public static bool EqualsIgnoreNull(string a, string b)
  173. {
  174. return string.IsNullOrEmpty(a) ? string.IsNullOrEmpty(b) : string.Equals(a, b);
  175. }
  176. public static bool StartsWith(string text, string startString)
  177. {
  178. if (string.IsNullOrEmpty(text) || string.IsNullOrEmpty(startString)) return false;
  179. return text.StartsWith(startString);
  180. }
  181. public static bool EndsWith(string text, string endString)
  182. {
  183. if (string.IsNullOrEmpty(text) || string.IsNullOrEmpty(endString)) return false;
  184. return text.EndsWith(endString);
  185. }
  186. public static void InsertBefore(string[] insertBeforeArray, StringBuilder contentBuilder, string insertContent)
  187. {
  188. if (contentBuilder == null) return;
  189. foreach (var insertBefore in insertBeforeArray)
  190. {
  191. if (contentBuilder.ToString().IndexOf(insertBefore, StringComparison.Ordinal) != -1)
  192. {
  193. InsertBefore(insertBefore, contentBuilder, insertContent);
  194. return;
  195. }
  196. }
  197. }
  198. private static void InsertBefore(string insertBefore, StringBuilder contentBuilder, string insertContent)
  199. {
  200. if (string.IsNullOrEmpty(insertBefore) || contentBuilder == null) return;
  201. var startIndex = contentBuilder.ToString().IndexOf(insertBefore, StringComparison.Ordinal);
  202. if (startIndex != -1)
  203. {
  204. contentBuilder.Insert(startIndex, insertContent);
  205. }
  206. }
  207. public static void InsertAfter(string[] insertAfterArray, StringBuilder contentBuilder, string insertContent)
  208. {
  209. if (contentBuilder != null)
  210. {
  211. foreach (var insertAfter in insertAfterArray)
  212. {
  213. if (contentBuilder.ToString().IndexOf(insertAfter, StringComparison.Ordinal) != -1)
  214. {
  215. InsertAfter(insertAfter, contentBuilder, insertContent);
  216. return;
  217. }
  218. }
  219. }
  220. }
  221. private static void InsertAfter(string insertAfter, StringBuilder contentBuilder, string insertContent)
  222. {
  223. if (string.IsNullOrEmpty(insertAfter) || contentBuilder == null) return;
  224. var startIndex = contentBuilder.ToString().IndexOf(insertAfter, StringComparison.Ordinal);
  225. if (startIndex == -1) return;
  226. if (startIndex != -1)
  227. {
  228. contentBuilder.Insert(startIndex + insertAfter.Length, insertContent);
  229. }
  230. }
  231. public static string HtmlDecode(string inputString)
  232. {
  233. return HttpUtility.HtmlDecode(inputString);
  234. }
  235. public static string HtmlEncode(string inputString)
  236. {
  237. return HttpUtility.HtmlEncode(inputString);
  238. }
  239. public static string ToXmlContent(string inputString)
  240. {
  241. var contentBuilder = new StringBuilder(inputString);
  242. contentBuilder.Replace("<![CDATA[", string.Empty);
  243. contentBuilder.Replace("]]>", string.Empty);
  244. contentBuilder.Insert(0, "<![CDATA[");
  245. contentBuilder.Append("]]>");
  246. return contentBuilder.ToString();
  247. }
  248. public static string ReplaceIgnoreCase(string original, string pattern, string replacement)
  249. {
  250. if (original == null) return string.Empty;
  251. if (replacement == null) replacement = string.Empty;
  252. var count = 0;
  253. var position0 = 0;
  254. int position1;
  255. var upperString = original.ToUpper();
  256. var upperPattern = pattern.ToUpper();
  257. var inc = (original.Length / pattern.Length) * (replacement.Length - pattern.Length);
  258. var chars = new char[original.Length + Math.Max(0, inc)];
  259. while ((position1 = upperString.IndexOf(upperPattern, position0, StringComparison.Ordinal)) != -1)
  260. {
  261. for (var i = position0; i < position1; ++i) chars[count++] = original[i];
  262. foreach (var t in replacement)
  263. {
  264. chars[count++] = t;
  265. }
  266. position0 = position1 + pattern.Length;
  267. }
  268. if (position0 == 0) return original;
  269. for (var i = position0; i < original.Length; ++i) chars[count++] = original[i];
  270. return new string(chars, 0, count);
  271. }
  272. public static string Replace(string replace, string input, string to)
  273. {
  274. var retval = RegexUtils.Replace(replace, input, to);
  275. if (string.IsNullOrEmpty(replace)) return retval;
  276. if (replace.StartsWith("/") && replace.EndsWith("/"))
  277. {
  278. retval = RegexUtils.Replace(replace.Trim('/'), input, to);
  279. }
  280. else
  281. {
  282. retval = input.Replace(replace, to);
  283. }
  284. return retval;
  285. }
  286. public static void ReplaceHrefOrSrc(StringBuilder builder, string replace, string to)
  287. {
  288. builder.Replace("href=\"" + replace, "href=\"" + to);
  289. builder.Replace("href='" + replace, "href='" + to);
  290. builder.Replace("href=" + replace, "href=" + to);
  291. builder.Replace("href=&quot;" + replace, "href=&quot;" + to);
  292. builder.Replace("src=\"" + replace, "src=\"" + to);
  293. builder.Replace("src='" + replace, "src='" + to);
  294. builder.Replace("src=" + replace, "src=" + to);
  295. builder.Replace("src=&quot;" + replace, "src=&quot;" + to);
  296. }
  297. public static string ReplaceFirst(string replace, string input, string to)
  298. {
  299. var pos = input.IndexOf(replace, StringComparison.Ordinal);
  300. if (pos > 0)
  301. {
  302. //取位置前部分+替换字符串+位置(加上查找字符长度)后部分
  303. return input.Substring(0, pos) + to + input.Substring(pos + replace.Length);
  304. }
  305. if (pos == 0)
  306. {
  307. return to + input.Substring(replace.Length);
  308. }
  309. return input;
  310. }
  311. public static string ReplaceStartsWith(string input, string replace, string to)
  312. {
  313. var retVal = input;
  314. if (!string.IsNullOrEmpty(input) && !string.IsNullOrEmpty(replace) && input.StartsWith(replace))
  315. {
  316. retVal = to + input.Substring(replace.Length);
  317. }
  318. return retVal;
  319. }
  320. public static string ReplaceStartsWithIgnoreCase(string input, string replace, string to)
  321. {
  322. var retVal = input;
  323. if (!string.IsNullOrEmpty(input) && !string.IsNullOrEmpty(replace) && input.ToLower().StartsWith(replace.ToLower()))
  324. {
  325. retVal = to + input.Substring(replace.Length);
  326. }
  327. return retVal;
  328. }
  329. public static string ReplaceEndsWith(string input, string replace, string to)
  330. {
  331. var retVal = input;
  332. if (!string.IsNullOrEmpty(input) && !string.IsNullOrEmpty(replace) && input.EndsWith(replace))
  333. {
  334. retVal = input.Substring(0, input.Length - replace.Length) + to;
  335. }
  336. return retVal;
  337. }
  338. public static string ReplaceEndsWithIgnoreCase(string input, string replace, string to)
  339. {
  340. var retVal = input;
  341. if (!string.IsNullOrEmpty(input) && !string.IsNullOrEmpty(replace) && input.ToLower().EndsWith(replace.ToLower()))
  342. {
  343. retVal = input.Substring(0, input.Length - replace.Length) + to;
  344. }
  345. return retVal;
  346. }
  347. public static string ReplaceNewlineToBr(string inputString)
  348. {
  349. if (string.IsNullOrEmpty(inputString)) return string.Empty;
  350. var retVal = new StringBuilder();
  351. inputString = inputString.Trim();
  352. foreach (var t in inputString)
  353. {
  354. switch (t)
  355. {
  356. case '\n':
  357. retVal.Append("<br />");
  358. break;
  359. case '\r':
  360. break;
  361. default:
  362. retVal.Append(t);
  363. break;
  364. }
  365. }
  366. return retVal.ToString();
  367. }
  368. public static string ReplaceNewline(string inputString, string replacement)
  369. {
  370. if (string.IsNullOrEmpty(inputString)) return string.Empty;
  371. var retVal = new StringBuilder();
  372. inputString = inputString.Trim();
  373. foreach (var t in inputString)
  374. {
  375. switch (t)
  376. {
  377. case '\n':
  378. retVal.Append(replacement);
  379. break;
  380. case '\r':
  381. break;
  382. default:
  383. retVal.Append(t);
  384. break;
  385. }
  386. }
  387. return retVal.ToString();
  388. }
  389. private static Encoding Gb2312 { get; } = Encoding.GetEncoding("gb2312");
  390. private static bool IsTwoBytesChar(char chr)
  391. {
  392. // 使用中文支持编码
  393. return Gb2312.GetByteCount(new[] { chr }) == 2;
  394. }
  395. /// <summary>
  396. /// 得到innerText在content中的数目
  397. /// </summary>
  398. /// <param name="innerText"></param>
  399. /// <param name="content"></param>
  400. /// <returns></returns>
  401. public static int GetCount(string innerText, string content)
  402. {
  403. if (innerText == null || content == null)
  404. {
  405. return 0;
  406. }
  407. var count = 0;
  408. for (var index = content.IndexOf(innerText, StringComparison.Ordinal); index != -1; index = content.IndexOf(innerText, index + innerText.Length, StringComparison.Ordinal))
  409. {
  410. count++;
  411. }
  412. return count;
  413. }
  414. public static int GetStartCount(char startChar, string content)
  415. {
  416. if (content == null)
  417. {
  418. return 0;
  419. }
  420. var count = 0;
  421. foreach (var theChar in content)
  422. {
  423. if (theChar == startChar)
  424. {
  425. count++;
  426. }
  427. else
  428. {
  429. break;
  430. }
  431. }
  432. return count;
  433. }
  434. public static int GetStartCount(string startString, string content)
  435. {
  436. if (content == null)
  437. {
  438. return 0;
  439. }
  440. var count = 0;
  441. while (true)
  442. {
  443. if (content.StartsWith(startString))
  444. {
  445. count++;
  446. content = content.Remove(0, startString.Length);
  447. }
  448. else
  449. {
  450. break;
  451. }
  452. }
  453. return count;
  454. }
  455. public static string GetFirstOfStringCollection(string collection, char separator)
  456. {
  457. if (!string.IsNullOrEmpty(collection))
  458. {
  459. var index = collection.IndexOf(separator);
  460. return index == -1 ? collection : collection.Substring(0, index);
  461. }
  462. return string.Empty;
  463. }
  464. private static int _randomSeq;
  465. public static int GetRandomInt(int minValue, int maxValue)
  466. {
  467. var ro = new Random(unchecked((int)DateTime.Now.Ticks));
  468. var retval = ro.Next(minValue, maxValue);
  469. retval += _randomSeq++;
  470. if (retval >= maxValue)
  471. {
  472. _randomSeq = 0;
  473. retval = minValue;
  474. }
  475. return retval;
  476. }
  477. public static string ValueToUrl(string value)
  478. {
  479. var retval = string.Empty;
  480. if (!string.IsNullOrEmpty(value))
  481. {
  482. //替换url中的换行符,update by sessionliang at 20151211
  483. retval = value.Replace("=", "_equals_").Replace("&", "_and_").Replace("?", "_question_").Replace("'", "_quote_").Replace("+", "_add_").Replace("\r", "").Replace("\n", "");
  484. }
  485. return retval;
  486. }
  487. public static string ValueFromUrl(string value)
  488. {
  489. var retval = string.Empty;
  490. if (!string.IsNullOrEmpty(value))
  491. {
  492. retval = value.Replace("_equals_", "=").Replace("_and_", "&").Replace("_question_", "?").Replace("_quote_", "'").Replace("_add_", "+");
  493. }
  494. return retval;
  495. }
  496. public static string ToJsString(string value)
  497. {
  498. var retval = string.Empty;
  499. if (!string.IsNullOrEmpty(value))
  500. {
  501. retval = value.Replace("'", @"\'").Replace("\r", "\\r").Replace("\n", "\\n");
  502. }
  503. return retval;
  504. }
  505. public static string ParseReplace(string parsedContent, string replace, string to)
  506. {
  507. if (replace.IndexOf(',') != -1)
  508. {
  509. var replaceList = TranslateUtils.StringCollectionToStringList(replace);
  510. var toList = TranslateUtils.StringCollectionToStringList(to);
  511. if (replaceList.Count == toList.Count)
  512. {
  513. for (var i = 0; i < replaceList.Count; i++)
  514. {
  515. parsedContent = parsedContent.Replace(replaceList[i], toList[i]);
  516. }
  517. return parsedContent;
  518. }
  519. if (toList.Count == 1)
  520. {
  521. foreach (var replaceStr in replaceList)
  522. {
  523. parsedContent = parsedContent.Replace(replaceStr, to);
  524. }
  525. return parsedContent;
  526. }
  527. }
  528. string retval;
  529. if (replace.StartsWith("/") && replace.EndsWith("/"))
  530. {
  531. retval = RegexUtils.Replace(replace.Trim('/'), parsedContent, to);
  532. }
  533. else
  534. {
  535. retval = parsedContent.Replace(replace, to);
  536. }
  537. return retval;
  538. }
  539. public static string GetTrueImageHtml(string isDefaultStr)
  540. {
  541. return GetTrueImageHtml(TranslateUtils.ToBool(isDefaultStr));
  542. }
  543. private static string GetTrueImageHtml(bool isDefault)
  544. {
  545. var retval = string.Empty;
  546. if (isDefault)
  547. {
  548. retval = "<img src='../pic/icon/right.gif' border='0'/>";
  549. }
  550. return retval;
  551. }
  552. public static string LowerFirst(string input)
  553. {
  554. if (string.IsNullOrEmpty(input)) return string.Empty;
  555. return input.First().ToString().ToLower() + input.Substring(1);
  556. }
  557. }
  558. }