File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace TgUtils ;
4
4
5
+
5
6
class Utils {
6
7
8
+ public const ALPHA = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ' ;
9
+ public const NUMERIC = '01234567890 ' ;
10
+ public const SPECIAL = '!§$%&/()=?*_:;>{[]+~#-.,<^`´@ ' ;
11
+ public const ALPHANUMERIC = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ' ;
12
+ public const ALPHASPECIAL = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!§$%&/()=?*_:;>{[]+~#-.,<^`´@ ' ;
13
+ public const NUMERICSPECIAL = '0123456789!§$%&/()=?*_:;>{[]+~#-.,<^`´@ ' ;
14
+ public const ALPHNUMERICSPECIAL = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!§$%&/()=?*_:;>{[]+~#-.,<^`´@ ' ;
15
+
7
16
/**
8
17
* Anonymizes a string.
9
18
* <p>This function replaces most
You can’t perform that action at this time.
0 commit comments