Skip to content

Commit 6564445

Browse files
v2.2.1 : Added New Special character
1 parent ff36cb8 commit 6564445

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

EZCode/EZCode.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5203,6 +5203,7 @@ string[] getString_value(string[] parts, int next, bool all = false, bool useVar
52035203
txt = txt.Contains(@"\e") && !txt.Contains(@"\\e") ? txt.Replace(@"\e", "!") : txt.Contains(@"\\e") ? txt.Replace(@"\\e", @"\e") : txt;
52045204
txt = txt.Contains(@"\$") && !txt.Contains(@"\\$") ? txt.Replace(@"\$", "|") : txt.Contains(@"\\$") ? txt.Replace(@"\\$", @"\$") : txt;
52055205
txt = txt.Contains(@"\&") && !txt.Contains(@"\\&") ? txt.Replace(@"\&", ";") : txt.Contains(@"\\&") ? txt.Replace(@"\\&", @"\&") : txt;
5206+
txt = txt.Contains(@"\p") && !txt.Contains(@"\\p") ? txt.Replace(@"\p", ".") : txt.Contains(@"\\p") ? txt.Replace(@"\\p", @"\p") : txt;
52065207
txt = txt.Replace(@"\\(", @"\(");
52075208
txt = txt.Replace(@")\\", @")\");
52085209

0 commit comments

Comments
 (0)