StringExtensions.cs
34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
using NCC.DataEncryption;
using NCC.Dependency;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
namespace NCC.Common.Extension
{
/// <summary>
/// 字符串<see cref="string"/>类型的扩展辅助操作类
/// </summary>
[SuppressSniffer]
public static class StringExtensions
{
#region 正则表达式
/// <summary>
/// 指示所指定的正则表达式在指定的输入字符串中是否找到了匹配项
/// </summary>
/// <param name="value">要搜索匹配项的字符串</param>
/// <param name="pattern">要匹配的正则表达式模式</param>
/// <param name="isContains">是否包含,否则全匹配</param>
/// <returns>如果正则表达式找到匹配项,则为 true;否则,为 false</returns>
public static bool IsMatch(this string value, string pattern, bool isContains = true)
{
if (value == null)
{
return false;
}
return isContains
? Regex.IsMatch(value, pattern)
: Regex.Match(value, pattern).Success;
}
/// <summary>
/// 在指定的输入字符串中搜索指定的正则表达式的第一个匹配项
/// </summary>
/// <param name="value">要搜索匹配项的字符串</param>
/// <param name="pattern">要匹配的正则表达式模式</param>
/// <returns>一个对象,包含有关匹配项的信息</returns>
public static string Match(this string value, string pattern)
{
if (value == null)
{
return null;
}
return Regex.Match(value, pattern).Value;
}
/// <summary>
/// 在指定的输入字符串中匹配并替换符合指定正则表达式的子串
/// </summary>
public static string ReplaceRegex(this string value, string pattern, string replacement)
{
if (value == null)
{
return null;
}
return Regex.Replace(value, pattern, replacement);
}
/// <summary>
/// 在指定的输入字符串中搜索指定的正则表达式的所有匹配项的字符串集合
/// </summary>
/// <param name="value"> 要搜索匹配项的字符串 </param>
/// <param name="pattern"> 要匹配的正则表达式模式 </param>
/// <returns> 一个集合,包含有关匹配项的字符串值 </returns>
public static IEnumerable<string> Matches(this string value, string pattern)
{
if (value == null)
{
return new string[] { };
}
MatchCollection matches = Regex.Matches(value, pattern);
return from Match match in matches select match.Value;
}
/// <summary>
/// 在指定的输入字符串中匹配第一个数字字符串
/// </summary>
public static string MatchFirstNumber(this string value)
{
MatchCollection matches = Regex.Matches(value, @"\d+");
if (matches.Count == 0)
{
return string.Empty;
}
return matches[0].Value;
}
/// <summary>
/// 在指定字符串中匹配最后一个数字字符串
/// </summary>
public static string MatchLastNumber(this string value)
{
MatchCollection matches = Regex.Matches(value, @"\d+");
if (matches.Count == 0)
{
return string.Empty;
}
return matches[matches.Count - 1].Value;
}
/// <summary>
/// 在指定字符串中匹配所有数字字符串
/// </summary>
public static IEnumerable<string> MatchNumbers(this string value)
{
return Matches(value, @"\d+");
}
/// <summary>
/// 检测指定字符串中是否包含数字
/// </summary>
public static bool IsMatchNumber(this string value)
{
return IsMatch(value, @"\d");
}
/// <summary>
/// 检测指定字符串是否全部为数字并且长度等于指定长度
/// </summary>
public static bool IsMatchNumber(this string value, int length)
{
Regex regex = new Regex(@"^\d{" + length + "}$");
return regex.IsMatch(value);
}
/// <summary>
/// 截取指定字符串之间的字符串
/// </summary>
/// <param name="source"></param>
/// <param name="startString">起始字符串</param>
/// <param name="endStrings">结束字符串,可多个</param>
/// <returns>返回的中间字符串</returns>
public static string Substring(this string source, string startString, params string[] endStrings)
{
if (source.IsMissing())
{
return string.Empty;
}
int startIndex = 0;
if (!string.IsNullOrEmpty(startString))
{
startIndex = source.IndexOf(startString, StringComparison.OrdinalIgnoreCase);
if (startIndex < 0)
{
throw new InvalidOperationException(string.Format("在源字符串中无法找到“{0}”的子串位置", startString));
}
startIndex = startIndex + startString.Length;
}
int endIndex = source.Length;
endStrings = endStrings.OrderByDescending(m => m.Length).ToArray();
foreach (string endString in endStrings)
{
if (string.IsNullOrEmpty(endString))
{
endIndex = source.Length;
break;
}
endIndex = source.IndexOf(endString, startIndex, StringComparison.OrdinalIgnoreCase);
if (endIndex < 0 || endIndex < startIndex)
{
continue;
}
break;
}
if (endIndex < 0 || endIndex < startIndex)
{
throw new InvalidOperationException(string.Format("在源字符串中无法找到“{0}”的子串位置", endStrings.ExpandAndToString()));
}
int length = endIndex - startIndex;
return source.Substring(startIndex, length);
}
/// <summary>
/// 用正则表达式截取字符串
/// </summary>
public static string Substring2(this string source, string startString, string endString)
{
return source.Substring2(startString, endString, false);
}
/// <summary>
/// 用正则表达式截取字符串
/// </summary>
public static string Substring2(this string source, string startString, string endString, bool containsEmpty)
{
if (source.IsMissing())
{
return string.Empty;
}
string inner = containsEmpty ? "\\s\\S" : "\\S";
string result = source.Match(string.Format("(?<={0})([{1}]+?)(?={2})", startString, inner, endString));
return result.IsMissing() ? null : result;
}
/// <summary>
/// 是否电子邮件
/// </summary>
public static bool IsEmail(this string value)
{
const string pattern = @"^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$";
return value.IsMatch(pattern);
}
/// <summary>
/// 是否是IP地址
/// </summary>
public static bool IsIpAddress(this string value)
{
const string pattern = @"^((?:(?:25[0-5]|2[0-4]\d|((1\d{2})|([1-9]?\d)))\.){3}(?:25[0-5]|2[0-4]\d|((1\d{2})|([1-9]?\d))))$";
return value.IsMatch(pattern);
}
/// <summary>
/// 是否是整数
/// </summary>
public static bool IsNumeric(this string value)
{
const string pattern = @"^\-?[0-9]+$";
return value.IsMatch(pattern);
}
/// <summary>
/// 是否是Unicode字符串
/// </summary>
public static bool IsUnicode(this string value)
{
const string pattern = @"^[\u4E00-\u9FA5\uE815-\uFA29]+$";
return value.IsMatch(pattern);
}
/// <summary>
/// 是否Url字符串
/// </summary>
public static bool IsUrl(this string value)
{
try
{
if (value.IsNullOrEmpty() || value.Contains(' '))
{
return false;
}
Uri uri = new Uri(value);
return true;
}
catch (Exception)
{
return false;
}
}
/// <summary>
/// 是否身份证号,验证如下3种情况:
/// 1.身份证号码为15位数字;
/// 2.身份证号码为18位数字;
/// 3.身份证号码为17位数字+1个字母
/// </summary>
public static bool IsIdentityCardId(this string value)
{
if (value.Length != 15 && value.Length != 18)
{
return false;
}
Regex regex;
string[] array;
DateTime time;
if (value.Length == 15)
{
regex = new Regex(@"^(\d{6})(\d{2})(\d{2})(\d{2})(\d{3})_");
if (!regex.Match(value).Success)
{
return false;
}
array = regex.Split(value);
return DateTime.TryParse(string.Format("{0}-{1}-{2}", "19" + array[2], array[3], array[4]), out time);
}
regex = new Regex(@"^(\d{6})(\d{4})(\d{2})(\d{2})(\d{3})([0-9Xx])$");
if (!regex.Match(value).Success)
{
return false;
}
array = regex.Split(value);
if (!DateTime.TryParse(string.Format("{0}-{1}-{2}", array[2], array[3], array[4]), out time))
{
return false;
}
//校验最后一位
string[] chars = value.ToCharArray().Select(m => m.ToString()).ToArray();
int[] weights = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 };
int sum = 0;
for (int i = 0; i < 17; i++)
{
int num = int.Parse(chars[i]);
sum = sum + num * weights[i];
}
int mod = sum % 11;
string vCode = "10X98765432";//检验码字符串
string last = vCode.ToCharArray().ElementAt(mod).ToString();
return chars.Last().ToUpper() == last;
}
/// <summary>
/// 是否手机号码
/// </summary>
/// <param name="value"></param>
/// <param name="isRestrict">是否按严格格式验证</param>
public static bool IsMobileNumber(this string value, bool isRestrict = false)
{
string pattern = isRestrict ? @"^[1][3-8]\d{9}$" : @"^[1]\d{10}$";
return value.IsMatch(pattern);
}
#endregion
#region 其他操作
/// <summary>
/// 指示指定的字符串是 null 或者 System.String.Empty 字符串
/// </summary>
[DebuggerStepThrough]
public static bool IsNullOrEmpty(this string value)
{
return string.IsNullOrEmpty(value);
}
/// <summary>
/// 指示指定的字符串是 null、空或者仅由空白字符组成。
/// </summary>
[DebuggerStepThrough]
public static bool IsNullOrWhiteSpace(this string value)
{
return string.IsNullOrWhiteSpace(value);
}
/// <summary>
/// 指示指定的字符串是 null、空或者仅由空白字符组成。
/// </summary>
[DebuggerStepThrough]
public static bool IsMissing(this string value)
{
return string.IsNullOrWhiteSpace(value);
}
/// <summary>
/// 为指定格式的字符串填充相应对象来生成字符串
/// </summary>
/// <param name="format">字符串格式,占位符以{n}表示</param>
/// <param name="args">用于填充占位符的参数</param>
/// <returns>格式化后的字符串</returns>
[DebuggerStepThrough]
public static string FormatWith(this string format, params object[] args)
{
return string.Format(CultureInfo.CurrentCulture, format, args);
}
/// <summary>
/// 将字符串反转
/// </summary>
/// <param name="value">要反转的字符串</param>
public static string ReverseString(this string value)
{
return new string(value.Reverse().ToArray());
}
/// <summary>
/// 单词变成单数形式
/// </summary>
/// <param name="word"></param>
/// <returns></returns>
public static string ToSingular(this string word)
{
Regex plural1 = new Regex("(?<keep>[^aeiou])ies$");
Regex plural2 = new Regex("(?<keep>[aeiou]y)s$");
Regex plural3 = new Regex("(?<keep>[sxzh])es$");
Regex plural4 = new Regex("(?<keep>[^sxzhyu])s$");
if (plural1.IsMatch(word))
{
return plural1.Replace(word, "${keep}y");
}
if (plural2.IsMatch(word))
{
return plural2.Replace(word, "${keep}");
}
if (plural3.IsMatch(word))
{
return plural3.Replace(word, "${keep}");
}
if (plural4.IsMatch(word))
{
return plural4.Replace(word, "${keep}");
}
return word;
}
/// <summary>
/// 单词变成复数形式
/// </summary>
/// <param name="word"></param>
/// <returns></returns>
public static string ToPlural(this string word)
{
Regex plural1 = new Regex("(?<keep>[^aeiou])y$");
Regex plural2 = new Regex("(?<keep>[aeiou]y)$");
Regex plural3 = new Regex("(?<keep>[sxzh])$");
Regex plural4 = new Regex("(?<keep>[^sxzhy])$");
if (plural1.IsMatch(word))
{
return plural1.Replace(word, "${keep}ies");
}
if (plural2.IsMatch(word))
{
return plural2.Replace(word, "${keep}s");
}
if (plural3.IsMatch(word))
{
return plural3.Replace(word, "${keep}es");
}
if (plural4.IsMatch(word))
{
return plural4.Replace(word, "${keep}s");
}
return word;
}
/// <summary>
/// 判断指定路径是否图片文件
/// </summary>
public static bool IsImageFile(this string filename)
{
if (!File.Exists(filename))
{
return false;
}
byte[] fileData = File.ReadAllBytes(filename);
if (fileData.Length == 0)
{
return false;
}
ushort code = BitConverter.ToUInt16(fileData, 0);
switch (code)
{
case 0x4D42: //bmp
case 0xD8FF: //jpg
case 0x4947: //gif
case 0x5089: //png
return true;
default:
return false;
}
}
/// <summary>
/// 以指定字符串作为分隔符将指定字符串分隔成数组
/// </summary>
/// <param name="value">要分割的字符串</param>
/// <param name="strSplit">字符串类型的分隔符</param>
/// <param name="removeEmptyEntries">是否移除数据中元素为空字符串的项</param>
/// <returns>分割后的数据</returns>
public static string[] Split(this string value, string strSplit, bool removeEmptyEntries = false)
{
return value.Split(new[] { strSplit }, removeEmptyEntries ? StringSplitOptions.RemoveEmptyEntries : StringSplitOptions.None);
}
/// <summary>
/// 支持汉字的字符串长度,汉字长度计为2
/// </summary>
/// <param name="value">参数字符串</param>
/// <returns>当前字符串的长度,汉字长度为2</returns>
public static int TextLength(this string value)
{
ASCIIEncoding ascii = new ASCIIEncoding();
int tempLen = 0;
byte[] bytes = ascii.GetBytes(value);
foreach (byte b in bytes)
{
if (b == 63)
{
tempLen += 2;
}
else
{
tempLen += 1;
}
}
return tempLen;
}
/// <summary>
/// 将JSON字符串还原为对象
/// </summary>
/// <typeparam name="T">要转换的目标类型</typeparam>
/// <param name="json">JSON字符串 </param>
/// <returns></returns>
public static T FromJsonString<T>(this string json)
{
return JsonConvert.DeserializeObject<T>(json);
}
/// <summary>
/// 将JSON字符串还原为对象
/// </summary>
/// <param name="json">JSON字符串 </param>
/// <param name="type">数据类型</param>
public static object FromJsonString(this string json, Type type)
{
return JsonConvert.DeserializeObject(json, type);
}
/// <summary>
/// 给URL添加查询参数
/// </summary>
/// <param name="url">URL字符串</param>
/// <param name="queries">要添加的参数,形如:"id=1,cid=2"</param>
/// <returns></returns>
public static string AddUrlQuery(this string url, params string[] queries)
{
foreach (string query in queries)
{
if (!url.Contains("?"))
{
url += "?";
}
else if (!url.EndsWith("&"))
{
url += "&";
}
url = url + query;
}
return url;
}
/// <summary>
/// 获取URL中指定参数的值,不存在返回空字符串
/// </summary>
public static string GetUrlQuery(this string url, string key)
{
Uri uri = new Uri(url);
string query = uri.Query;
if (query.IsNullOrEmpty())
{
return string.Empty;
}
query = query.TrimStart('?');
var dict = (from m in query.Split("&", true)
let strs = m.Split("=")
select new KeyValuePair<string, string>(strs[0], strs[1]))
.ToDictionary(m => m.Key, m => m.Value);
if (dict.ContainsKey(key))
{
return dict[key];
}
return string.Empty;
}
/// <summary>
/// 给URL添加 # 参数
/// </summary>
/// <param name="url">URL字符串</param>
/// <param name="query">要添加的参数</param>
/// <returns></returns>
public static string AddHashFragment(this string url, string query)
{
if (!url.Contains("#"))
{
url += "#";
}
return url + query;
}
/// <summary>
/// 将字符串转换为<see cref="byte"/>[]数组,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
public static byte[] ToBytes(this string value, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
return encoding.GetBytes(value);
}
/// <summary>
/// 将<see cref="byte"/>[]数组转换为字符串,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
public static string ToString2(this byte[] bytes, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
return encoding.GetString(bytes);
}
/// <summary>
/// 将<see cref="byte"/>[]数组转换为Base64字符串
/// </summary>
public static string ToBase64String(this byte[] bytes)
{
return Convert.ToBase64String(bytes);
}
/// <summary>
/// 将字符串转换为Base64字符串,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
/// <param name="source">正常的字符串</param>
/// <param name="encoding">编码</param>
/// <returns>Base64字符串</returns>
public static string ToBase64String(this string source, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
return Convert.ToBase64String(encoding.GetBytes(source));
}
/// <summary>
/// 将Base64字符串转换为正常字符串,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
/// <param name="base64String">Base64字符串</param>
/// <param name="encoding">编码</param>
/// <returns>正常字符串</returns>
public static string FromBase64String(this string base64String, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
byte[] bytes = Convert.FromBase64String(base64String);
return encoding.GetString(bytes);
}
/// <summary>
/// 将字符串进行UrlDecode解码
/// </summary>
/// <param name="source">待UrlDecode解码的字符串</param>
/// <returns>UrlDecode解码后的字符串</returns>
public static string ToUrlDecode(this string source)
{
return HttpUtility.UrlDecode(source);
}
/// <summary>
/// 将字符串进行UrlEncode编码
/// </summary>
/// <param name="source">待UrlEncode编码的字符串</param>
/// <returns>UrlEncode编码后的字符串</returns>
public static string ToUrlEncode(this string source)
{
return HttpUtility.UrlEncode(source);
}
/// <summary>
/// 将字符串进行HtmlDecode解码
/// </summary>
/// <param name="source">待HtmlDecode解码的字符串</param>
/// <returns>HtmlDecode解码后的字符串</returns>
public static string ToHtmlDecode(this string source)
{
return HttpUtility.HtmlDecode(source);
}
/// <summary>
/// 将字符串进行HtmlEncode编码
/// </summary>
/// <param name="source">待HtmlEncode编码的字符串</param>
/// <returns>HtmlEncode编码后的字符串</returns>
public static string ToHtmlEncode(this string source)
{
return HttpUtility.HtmlEncode(source);
}
/// <summary>
/// 将字符串转换为十六进制字符串,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
public static string ToHexString(this string source, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
byte[] bytes = encoding.GetBytes(source);
return bytes.ToHexString();
}
/// <summary>
/// 将十六进制字符串转换为常规字符串,默认编码为<see cref="Encoding.UTF8"/>
/// </summary>
public static string FromHexString(this string hexString, Encoding encoding = null)
{
if (encoding == null)
{
encoding = Encoding.UTF8;
}
byte[] bytes = hexString.ToHexBytes();
return encoding.GetString(bytes);
}
/// <summary>
/// 将byte[]编码为十六进制字符串
/// </summary>
/// <param name="bytes">byte[]数组</param>
/// <returns>十六进制字符串</returns>
public static string ToHexString(this byte[] bytes)
{
return bytes.Aggregate(string.Empty, (current, t) => current + t.ToString("X2"));
}
/// <summary>
/// 将十六进制字符串转换为byte[]
/// </summary>
/// <param name="hexString">十六进制字符串</param>
/// <returns>byte[]数组</returns>
public static byte[] ToHexBytes(this string hexString)
{
hexString = hexString ?? "";
hexString = hexString.Replace(" ", "");
byte[] bytes = new byte[hexString.Length / 2];
for (int i = 0; i < bytes.Length; i++)
{
bytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
}
return bytes;
}
/// <summary>
/// 将字符串进行Unicode编码,变成形如“\u7f16\u7801”的形式
/// </summary>
/// <param name="source">要进行编号的字符串</param>
public static string ToUnicodeString(this string source)
{
Regex regex = new Regex(@"[^\u0000-\u00ff]");
return regex.Replace(source, m => string.Format(@"\u{0:x4}", (short)m.Value[0]));
}
/// <summary>
/// 将形如“\u7f16\u7801”的Unicode字符串解码
/// </summary>
public static string FromUnicodeString(this string source)
{
Regex regex = new Regex(@"\\u([0-9a-fA-F]{4})", RegexOptions.Compiled);
return regex.Replace(source,
m =>
{
short s;
if (short.TryParse(m.Groups[1].Value, NumberStyles.HexNumber, CultureInfo.InstalledUICulture, out s))
{
return "" + (char)s;
}
return m.Value;
});
}
/// <summary>
/// 将驼峰字符串按单词拆分并转换成小写,再以特定字符串分隔
/// </summary>
/// <param name="str">待转换的字符串</param>
/// <param name="splitStr">分隔符字符</param>
/// <returns></returns>
public static string UpperToLowerAndSplit(this string str, string splitStr = "-")
{
if (string.IsNullOrEmpty(str))
{
return str;
}
List<string> words = new List<string>();
while (str.Length > 0)
{
char c = str.FirstOrDefault(char.IsUpper);
if (c == default(char))
{
words.Add(str);
break;
}
int upperIndex = str.IndexOf(c);
if (upperIndex < 0) //admin
{
return str;
}
if (upperIndex > 0) //adminAdmin
{
string first = str.Substring(0, upperIndex);
words.Add(first);
str = str.Substring(upperIndex, str.Length - upperIndex);
continue;
}
str = char.ToLower(str[0]) + str.Substring(1, str.Length - 1);
}
return words.ExpandAndToString(splitStr);
}
/// <summary>
/// 将驼峰字符串的第一个字符小写
/// </summary>
public static string LowerFirstChar(this string str)
{
if (string.IsNullOrEmpty(str) || !char.IsUpper(str[0]))
{
return str;
}
if (str.Length == 1)
{
return char.ToLower(str[0]).ToString();
}
return char.ToLower(str[0]) + str.Substring(1, str.Length - 1);
}
/// <summary>
/// 将小驼峰字符串的第一个字符大写
/// </summary>
public static string UpperFirstChar(this string str)
{
if (string.IsNullOrEmpty(str) || !char.IsLower(str[0]))
{
return str;
}
if (str.Length == 1)
{
return char.ToUpper(str[0]).ToString();
}
return char.ToUpper(str[0]) + str.Substring(1, str.Length - 1);
}
/// <summary>
/// 计算当前字符串与指定字符串的编辑距离(相似度)
/// </summary>
/// <param name="source">源字符串</param>
/// <param name="target">目标字符串</param>
/// <param name="similarity">输出相似度</param>
/// <param name="ignoreCase">是否忽略大小写</param>
/// <returns>编辑距离</returns>
public static int LevenshteinDistance(this string source, string target, out double similarity, bool ignoreCase = false)
{
if (string.IsNullOrEmpty(source))
{
if (string.IsNullOrEmpty(target))
{
similarity = 1;
return 0;
}
similarity = 0;
return target.Length;
}
if (string.IsNullOrEmpty(target))
{
similarity = 0;
return source.Length;
}
string from, to;
if (ignoreCase)
{
from = source;
to = target;
}
else
{
from = source.ToLower();
to = source.ToLower();
}
int m = from.Length, n = to.Length;
int[,] mn = new int[m + 1, n + 1];
for (int i = 0; i <= m; i++)
{
mn[i, 0] = i;
}
for (int j = 1; j <= n; j++)
{
mn[0, j] = j;
}
for (int i = 1; i <= m; i++)
{
char c = from[i - 1];
for (int j = 1; j <= n; j++)
{
if (c == to[j - 1])
{
mn[i, j] = mn[i - 1, j - 1];
}
else
{
mn[i, j] = Math.Min(mn[i - 1, j - 1], Math.Min(mn[i - 1, j], mn[i, j - 1])) + 1;
}
}
}
int maxLength = Math.Max(m, n);
similarity = (double)(maxLength - mn[m, n]) / maxLength;
return mn[m, n];
}
/// <summary>
/// 计算两个字符串的相似度,应用公式:相似度=kq*q/(kq*q+kr*r+ks*s)(kq>0,kr>=0,ka>=0)
/// 其中,q是字符串1和字符串2中都存在的单词的总数,s是字符串1中存在,字符串2中不存在的单词总数,r是字符串2中存在,字符串1中不存在的单词总数. kq,kr和ka分别是q,r,s的权重,根据实际的计算情况,我们设kq=2,kr=ks=1.
/// </summary>
/// <param name="source">源字符串</param>
/// <param name="target">目标字符串</param>
/// <param name="ignoreCase">是否忽略大小写</param>
/// <returns>字符串相似度</returns>
public static double GetSimilarityWith(this string source, string target, bool ignoreCase = false)
{
if (string.IsNullOrEmpty(source) && string.IsNullOrEmpty(target))
{
return 1;
}
if (string.IsNullOrEmpty(source) || string.IsNullOrEmpty(target))
{
return 0;
}
const double kq = 2, kr = 1, ks = 1;
char[] sourceChars = source.ToCharArray(), targetChars = target.ToCharArray();
//获取交集数量
int q = sourceChars.Intersect(targetChars).Count(), s = sourceChars.Length - q, r = targetChars.Length - q;
return kq * q / (kq * q + kr * r + ks * s);
}
/// <summary>
/// 将字符串转为帕斯卡命名法
/// </summary>
/// <param name="original">源字符串</param>
/// <returns></returns>
public static string ToPascalCase(this string original)
{
Regex invalidCharsRgx = new Regex("[^_a-zA-Z0-9]");
Regex whiteSpace = new Regex(@"(?<=\s)");
Regex startsWithLowerCaseChar = new Regex("^[a-z]");
Regex firstCharFollowedByUpperCasesOnly = new Regex("(?<=[A-Z])[A-Z0-9]+$");
Regex lowerCaseNextToNumber = new Regex("(?<=[0-9])[a-z]");
Regex upperCaseInside = new Regex("(?<=[A-Z])[A-Z]+?((?=[A-Z][a-z])|(?=[0-9]))");
// 用undescore替换空白,然后用空字符串替换所有无效字符
var pascalCase = invalidCharsRgx.Replace(whiteSpace.Replace(original, "_"), string.Empty)
// 用下划线分割
.Split(new char[] { '_' }, StringSplitOptions.RemoveEmptyEntries)
// 首字母设置为大写
.Select(w => startsWithLowerCaseChar.Replace(w, m => m.Value.ToUpper()))
// 如果没有下一个小写字母(ABC -> Abc),则将第二个及所有后面的大写字母替换为小写字母
.Select(w => firstCharFollowedByUpperCasesOnly.Replace(w, m => m.Value.ToLower()))
// 数字后面的第一个小写字母 设置大写(Ab9cd -> Ab9Cd)
.Select(w => lowerCaseNextToNumber.Replace(w, m => m.Value.ToUpper()))
// 第二个小写字母和下一个大写字母,除非最后一个字母后跟任何小写字母 (ABcDEf -> AbcDef)
.Select(w => upperCaseInside.Replace(w, m => m.Value.ToLower()));
return string.Concat(pascalCase);
}
#endregion
}
}