-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStringExt.cs
934 lines (757 loc) · 28.2 KB
/
StringExt.cs
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using SadrTools.Utility;
namespace SadrTools.Extensions
{
public static class StringExt
{
#region [ Private Methods ]
/// <summary>
/// تک رقمی - برگرداندن عبارت متنی یک عدد
/// </summary>
private static string OneDigitToText(this string str, int order)
{
switch (order)
{
case 0:
{
switch (str)
{
case "0":
return "";
case "1":
return "یک";
case "2":
return "دو";
case "3":
return "سه";
case "4":
return "چهار";
case "5":
return "پنج";
case "6":
return "شش";
case "7":
return "هفت";
case "8":
return "هشت";
case "9":
return "نه";
default:
return "";
}
}
case 1:
{
switch (str)
{
case "0":
return "";
case "1":
return "";
case "2":
return "بیست";
case "3":
return "سی";
case "4":
return "چهل";
case "5":
return "پنجاه";
case "6":
return "شصت";
case "7":
return "هفتاد";
case "8":
return "هشتاد";
case "9":
return "نود";
default:
return "";
}
}
case 2:
{
switch (str)
{
case "0":
return "";
case "1":
return "یکصد";
case "2":
return "دویست";
case "3":
return "سیصد";
case "4":
return "چهارصد";
case "5":
return "پانصد";
case "6":
return "ششصد";
case "7":
return "هفتصد";
case "8":
return "هشتصد";
case "9":
return "نهصد";
default:
return "";
}
}
default:
return "";
}
}
/// <summary>
/// دو رقمی - برگرداندن عبارت متنی یک عدد
/// </summary>
private static string TwoDigitToText(this string str)
{
switch (str)
{
case "10":
return "ده";
case "11":
return "یازده";
case "12":
return "دوازده";
case "13":
return "سیزده";
case "14":
return "چهارده";
case "15":
return "پانزده";
case "16":
return "شانزده";
case "17":
return "هفده";
case "18":
return "هجده";
case "19":
return "نوزده";
default:
return "";
}
}
private static T EnumParse<T>(this string str, bool ignorecase = true)
{
if (str == null)
throw new ArgumentNullException(CommonConsts.Messages.Exception.InvalidObject);
str = str.Trim();
if (str.Length == 0)
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
Type t = typeof(T);
if (!t.IsEnum)
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
return (T)Enum.Parse(t, str, ignorecase);
}
private static IEnumerable<string> SplitCamelCase(this string source)
{
const string pattern = @"[A-Z][a-z]*|[a-z]+|\d+";
var matches = Regex.Matches(source, pattern);
foreach (Match match in matches)
{
yield return match.Value;
}
}
#endregion
public static string ToUpperFirstLetter(this string str)
{
if (!str.IsNullOrEmpty())
return str.Substring(0, 1).ToUpper() + str.Substring(1);
return str;
}
public static string RemoveLastChar(this string str)
{
if (!str.IsNullOrEmpty() && str.Length >= 1)
return str.Substring(0, str.Length - 1);
return str;
}
public static bool IsNumber(this string str)
{
for (int i = 0; i < str.Length; i++)
if (!char.IsDigit(str[i]))
return false;
return true;
}
/// <summary>
/// نمایش اعداد با فونت فارسی
/// </summary>
/// <param name="str">متن</param>
public static string NumberToPersianFont(this string str)
{
if (!str.IsNullOrEmpty())
{
for (int i = 0; i < str.Length; i++)
{
if (str[i] >= '0' && str[i] <= '9')
{
if ((str[i]) < 1776)
{
char ch = Convert.ToChar(str[i] + 1776 - '0');
str = str.Replace(str[i], ch);
}
}
}
}
return str;
}
/// <summary>
/// برگرداندن عبارت متنی یک عدد
/// </summary>
/// <param name="str">ورودی</param>
public static string NumberToPersianText(this string str)
{
StringBuilder output = new StringBuilder();
if (!str.IsNullOrEmpty())
{
int i = str.Length - 1;
int j = 0;
int part = 0;
while (i >= 0)
{
string temp = str[i].ToString();
if ((i != 0) && (j == 0) & (str[i - 1] == '1'))
{
temp = str.Substring(i - 1, 2);
temp = temp.TwoDigitToText();
output.Insert(0, temp);
if ((i != 0) & ((i - 1) != 0))
output.Insert(0, " و ");
i -= 2;
j++;
}
else
{
temp = temp.OneDigitToText(j);
if (temp != "")
{
output.Insert(0, temp);
if (i != 0)
output.Insert(0, " و ");
}
i--;
}
if (j == 2)
{
part++;
if (i != -1)
if (i == 1)
{
output.Insert(0, " " + NumericMethods.PartsName(part) + " ");
}
else
{
if (i == 0)
{
output.Insert(0, " " + NumericMethods.PartsName(part) + " ");
}
else
{
if (str.Substring(i - 2, 3) != "000")
output.Insert(0, " " + NumericMethods.PartsName(part) + " ");
}
}
j = 0;
}
else
j++;
}
}
return output.ToString();
}
/// <summary>
/// تبدیل حروف عربی به فارسی
/// </summary>
public static string ArabicToPersianLetter(this string str)
{
string result = null;
foreach (char c in str)
{
//کد یونیکد "ک" عربی = 1603
//کد یونیکد "ی" عربی = 1610
//کد یونیکد "ک" فارسی = 1705
//کد یونیکد "ى" فارسی = 1740
int ascii = c;
switch (ascii)
{
case 1577:
result = $"{result}{((char)1578)}";
break;
case 1610:
result = $"{result}{((char)1740)}";
break;
case 1603:
result = $"{result}{((char)1705)}";
break;
default:
result = $"{result}{((char)ascii)}";
break;
}
}
return result;
}
/// <summary>
/// برگرداندن عدد
/// </summary>
public static string ExtractNumber(this string str)
{
bool isNegative = false;
string temp = "";
str = str.Trim();
if (str[0] == '-' || (str[0] == '(' && str[str.Length - 1] == ')'))
isNegative = true;
char[] arr = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.' };
for (int i = 0; i < str.Length; i++)
{
foreach (char c in arr)
{
if (str[i] == c)
temp += str[i];
}
}
if (isNegative)
temp = "-" + temp;
return temp;
}
/// <summary>
/// سه رقم سه رقم
/// </summary>
public static string ThousandSeprator(this string str)
{
str = str.Trim();
string next = "";
int counter = 0;
string result = "";
int pos = str.IndexOf(".");
if (pos > -1)
{
next = str.Substring(pos, str.Length - pos);
str = str.Substring(0, pos);
}
int pos2 = str.IndexOf("-");
if (pos2 > -1)
{
str = str.Substring(1, str.Length - 1);
}
if (str.Length >= 4)
{
for (int i = str.Length - 1; i >= 0; i--)
{
counter++;
if ((counter % 3) == 0 && counter != str.Length)
result = result.Insert(0, "," + str.Substring(i, 3));
else
if (counter == str.Length)
result = result.Insert(0, str.Substring(i, ((counter % 3) == 0 ? 3 : (counter % 3))));
}
}
else
result = str;
result += next;
if (pos2 > -1)
result = "(" + result + ")";
return result;
}
public static T EnumParse<T>(this string value)
{
return EnumParse<T>(value, false);
}
public static Stream ToStream(this string str)
{
var byteArray = str.GetBytes();
return new MemoryStream(byteArray);
}
public static byte[] GetBytes(this string str)
{
return Encoding.UTF8.GetBytes(str);
}
public static void ToFile(this string str, string path, bool isAppend = true)
{
using (StreamWriter sw = new StreamWriter(path, isAppend))
{
sw.WriteLine(str);
}
}
public static int Occurrence(this String instr, string search)
{
return System.Text.RegularExpressions.Regex.Matches(instr, search).Count;
}
public static bool IsMatchRegex(this string value, string pattern)
{
Regex regex = new Regex(pattern);
return (regex.IsMatch(value));
}
public static bool IsValidEmailAddressRegex(this string email)
{
return email.IsMatchRegex(@"^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$");
}
public static bool IsValidUrl(this string str)
{
return str.IsMatchRegex(@"http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?");
}
public static bool IsNullOrEmpty(this string input)
{
return (input == null || input == "");
}
/// <summary>
/// رمزگذاری با الگوریتم RSA
/// </summary>
/// <param name="str">عبارت مورد نظر</param>
/// <param name="key">کلید</param>
public static string EncryptViaRSA(this string str, string key)
{
if (str.IsNullOrEmpty())
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
if (key.IsNullOrEmpty())
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
// Cryptographic Service Provider (CSP)
var cspp = new CspParameters
{
KeyContainerName = key
};
var rsa = new RSACryptoServiceProvider(cspp)
{
PersistKeyInCsp = true
};
byte[] bytes = rsa.Encrypt(str.GetBytes(), true);
return bytes.BitToString();
}
/// <summary>
/// دیکریپشن با الگوریتم RSA
/// </summary>
/// <param name="str">عبارت مورد نظر</param>
/// <param name="key">کلید</param>
public static string DecryptViaRSA(this string str, string key)
{
string result = null;
if (str.IsNullOrEmpty())
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
if (key.IsNullOrEmpty())
throw new ArgumentException(CommonConsts.Messages.Exception.InvalidObject);
try
{
var cspp = new CspParameters
{
KeyContainerName = key
};
var rsa = new RSACryptoServiceProvider(cspp)
{
PersistKeyInCsp = true
};
string[] decryptArray = str.Split('-');
byte[] decryptByteArray = Array.ConvertAll(decryptArray, s =>
{
return Convert.ToByte(byte.Parse(s, NumberStyles.HexNumber));
});
byte[] bytes = rsa.Decrypt(decryptByteArray, true);
result = Encoding.UTF8.GetString(bytes);
}
catch (Exception ex)
{
ex.LogToTextFile("StringExt.DecryptViaRSA");
}
return result;
}
/// <summary>
/// حرف اول هر کلمه بر اساس کاراکترهای خاص کپیتال میشود
/// </summary>
public static string ToUpperLowerNameVariant(this string str)
{
if (str.IsNullOrEmpty())
return "";
char[] charArray = str.ToLower().ToCharArray();
bool nextUpper = true;
for (int i = 0; i < (charArray.Length - 1); i++)
{
if (nextUpper)
{
charArray[i] = char.Parse(charArray[i].ToString().ToUpper());
nextUpper = false;
}
else
{
switch (charArray[i])
{
case ' ':
case '-':
case '.':
case ':':
case '\n':
nextUpper = true;
break;
default:
nextUpper = false;
break;
}
}
}
return new string(charArray);
}
public static bool Like(this string value, string search)
{
return value.Contains(search) /*|| value.StartsWith(search) || value.EndsWith(search)*/;
}
/// <summary>
/// بر اساس قرارداد کمل بین کلمات فاصله میندازد
/// </summary>
/// <param name="source"></param>
/// <returns></returns>
public static string CamelCaseToHumanCase(this string source)
{
var words = source.SplitCamelCase();
return words.Join(" ");
}
/// <summary>
/// ساختن هَش
/// </summary>
/// <param name="str">متن</param>
/// <returns></returns>
public static string MakeItHash(this string str)
{
using (SHA512 sha = SHA512.Create())
{
byte[] bytes = sha.ComputeHash(Encoding.UTF8.GetBytes(str));
string result = bytes.BitToString();
return result;
}
}
/// <summary>
/// سالت و ترکیب آن با پسورد و هش کردن آن
/// </summary>
/// <param name="password">پسورد</param>
/// <param name="salt">سالت</param>
/// <returns></returns>
public static string MakeSaltedHashPassword(this string password, string salt)
{
var saltedPass = salt + password;
var hashedPass = saltedPass.MakeItHash();
return hashedPass;
}
/// <summary>
/// ساختن فایل از روی نام آن
/// </summary>
/// <param name="fileName">نام فایل</param>
public static byte[] GetFile(this string fileName)
{
FileInfo fi = new FileInfo(fileName);
byte[] fileData;
using (FileStream fs = new FileStream(fi.FullName, FileMode.Open, FileAccess.Read))
{
using (BinaryReader rdr = new BinaryReader(fs))
{
fileData = rdr.ReadBytes((int)fs.Length);
}
}
return fileData;
}
public static string ToEnglishNumber(this string str)
{
return str.Replace("۰", "0")
.Replace("۱", "1")
.Replace("۲", "2")
.Replace("۳", "3")
.Replace("۴", "4")
.Replace("۵", "5")
.Replace("۶", "6")
.Replace("۷", "7")
.Replace("۸", "8")
.Replace("۹", "9")
.Replace("٠", "0")
.Replace("١", "1")
.Replace("٢", "2")
.Replace("٣", "3")
.Replace("٤", "4")
.Replace("٥", "5")
.Replace("٦", "6")
.Replace("٧", "7")
.Replace("٨", "8")
.Replace("٩", "9");
}
public static string ToPersianNumber(this string str)
{
return str.Replace("0", "۰")
.Replace("1", "۱")
.Replace("2", "۲")
.Replace("3", "۳")
.Replace("4", "۴")
.Replace("5", "۵")
.Replace("6", "۶")
.Replace("7", "۷")
.Replace("8", "۸")
.Replace("9", "۹");
}
public static string ToPersianLetters(this string str)
{
return str.Replace("ﮎ", "ک")
.Replace("ﮏ", "ک")
.Replace("ﮐ", "ک")
.Replace("ﮑ", "ک")
.Replace("ك", "ک")
.Replace("ي", "ی")
.Replace("ئ", "ی")
.Replace("ھ", "ه");
}
public static bool IsNullOrEmptyOrZero(this string str)
{
return str == null || str.Length == 0 || str == "0" || str == "/";
}
public static DateTime ToGeorgianDateTime(this string persianDate)
{
persianDate = persianDate.ToEnglishNumber();
var year = Convert.ToInt32(persianDate.Substring(0, 4));
var month = Convert.ToInt32(persianDate.Substring(5, 2));
var day = Convert.ToInt32(persianDate.Substring(8, 2));
var parts = persianDate.Split(' ', ':');
if (parts != null && parts.Length == 4)
return new DateTime(year, month, day, parts[1].ToInt(), parts[2].ToInt(), parts[3].ToInt(), new PersianCalendar());
return new DateTime(year, month, day, new PersianCalendar());
}
public static DateTime ToGeorgianDateTime(this string persianDate, string time)
{
persianDate = persianDate.ToEnglishNumber();
var year = Convert.ToInt32(persianDate.Substring(0, 4));
var month = Convert.ToInt32(persianDate.Substring(5, 2));
var day = Convert.ToInt32(persianDate.Substring(8, 2));
var parts = time.Split(':');
if (parts != null && parts.Length == 2)
return new DateTime(year, month, day, parts[0].ToInt(), parts[1].ToInt(), 0, new PersianCalendar());
if (parts != null && parts.Length == 3)
return new DateTime(year, month, day, parts[0].ToInt(), parts[1].ToInt(), parts[2].ToInt(), new PersianCalendar());
return new DateTime(year, month, day, new PersianCalendar());
}
public static long ToLong(this string str)
{
_ = long.TryParse(str, out long res);
return res;
}
public static int ToInt(this string str)
{
_ = int.TryParse(str, out int res);
return res;
}
/// <summary>
/// حذف کاراکتر آخر
/// </summary>
public static string RemoveLastCharacter(this string str)
{
if (str.IsNullOrEmptyOrZero())
return string.Empty;
return str.Substring(0, str.Length - 1);
}
public static int CountOfLetter(this string str, char letter)
{
var letters = str.ToCharArray();
var cnt = 0;
foreach (var item in letters)
{
if (item == letter)
{
cnt++;
}
}
return cnt;
}
private static bool IsValidEmailCompany(this string str)
{
return str.ToLower().EndsWith("@yahoo.com") ||
str.ToLower().EndsWith("@gmail.com") ||
str.ToLower().EndsWith("@microsoft.com");
}
public static bool IsValidEmailAddress(this string str)
{
if (str.IsNullOrEmptyOrZero())
return false;
if (str.CountOfLetter('@') != 1)
return false;
if (!str.IsValidEmailCompany())
return false;
return true;
}
public static bool IsMaybeValidEmail(this string str)
{
return str.Contains("@") && str.Contains(".");
}
public static bool IsMaybeValidMobile(this string str)
{
return str.StartsWith("09") && str.Contains(".");
}
public static bool IsALongNumber(this string str)
{
var parsed = long.TryParse(str, out long result);
return parsed;
}
public static string Ul2Ol(this string str)
{
if (str.IsNullOrEmptyOrZero())
return "";
str = str.Replace("ul", "ol");
return str;
}
/// <summary>
/// ساختن هَش
/// </summary>
/// <param name="str">متن</param>
/// <returns></returns>
public static string MakeHash(this string str)
{
using var sha = System.Security.Cryptography.SHA512.Create();
byte[] bytes = sha.ComputeHash(Encoding.UTF8.GetBytes(str));
string result = BitConverter.ToString(bytes);
return result;
}
public static string FixEditorResultFormat(this string str)
{
if (str.IsNullOrEmptyOrZero())
return "";
var pattern = "style=\"[^\"]*\"";
str = Regex.Replace(str, pattern, string.Empty);
str = str.Replace("lang=\"AR-SA\"", string.Empty);
str = str.Replace("class=\"MsoNormal\"", string.Empty);
str = str.Replace(" ", " ");
str = str.Replace(" >", ">");
str = str.Replace("<span></span>", string.Empty);
str = str.Replace("<span></span>", string.Empty);
str = str.Replace("<p dir=\"RTL\"></p>", string.Empty);
str = str.Replace("<o:p></o:p>", string.Empty);
str = str.Replace("o:", string.Empty);
str = str.Replace("<span dir=\"LTR\"></span>", string.Empty);
str = str.Replace("<span dir=\"RTL\"></span>", string.Empty);
str = str.Replace("dir=\"RTL\"", string.Empty);
str = str.Replace("dir=\"LTR\"", string.Empty);
return str;
}
public static string Slugify(this string phrase)
{
var s = phrase.RemoveDiacritics().ToLower();
s = Regex.Replace(s, @"[^\u0600-\u06FF\uFB8A\u067E\u0686\u06AF\u200C\u200Fa-z0-9\s-]",""); // remove invalid characters
s = Regex.Replace(s, @"\s+", " ").Trim(); // single space
s = s.Substring(0, s.Length <= 100 ? s.Length : 45).Trim(); // cut and trim
s = Regex.Replace(s, @"\s", "-"); // insert hyphens
s = Regex.Replace(s, @"", "-"); // half space
return s.ToLower();
}
public static string RemoveDiacritics(this string text)
{
if (string.IsNullOrWhiteSpace(text))
return string.Empty;
var normalizedString = text.Normalize(NormalizationForm.FormKC);
var sb = new StringBuilder();
foreach (var c in normalizedString)
{
var unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c);
if (unicodeCategory != UnicodeCategory.NonSpacingMark)
{
sb.Append(c);
}
}
return sb.ToString().Normalize(NormalizationForm.FormC);
}
}
}