Skip to content

Commit f13f187

Browse files
committed
Correct Unicode regression introduced in 1.9.4
1 parent 9b90bac commit f13f187

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Profile.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ EXPORT Profile(inFile,
617617
#UNIQUENAME(_MapUpperCharUni);
618618
LOCAL %_MapUpperCharUni%(UNICODE s) := REGEXREPLACE(u'\\p{Lu}', s, u'A');
619619
#UNIQUENAME(_MapLowerCharUni);
620-
LOCAL %_MapLowerCharUni%(UNICODE s) := REGEXREPLACE(u'[[\\p{Ll}][\\p{Lt}][\\p{Lm}][\\p{Lo}]]', s, u'a');
620+
LOCAL %_MapLowerCharUni%(UNICODE s) := REGEXREPLACE(u'[\\p{Ll}\\p{Lt}\\p{Lm}\\p{Lo}]', s, u'a');
621621
#UNIQUENAME(_MapDigitUni);
622622
LOCAL %_MapDigitUni%(UNICODE s) := REGEXREPLACE(u'[1-9]', s, u'9'); // Leave '0' as-is and replace with '9' later
623623
#UNIQUENAME(_MapAllUni);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ level, such as within your "My Files" folder.
103103
|1.9.2|Security updates|
104104
|1.9.3|Better identify upper- and lower-case Unicode characters in text patterns; scan Unicode and UTF-8 strings to see if they can be represented with a STRING data type instead|
105105
|1.9.4|README fixes and updates; improve UTF-8 detection and prevent buffer overruns during character scans; use short form of Unicode property names in regex|
106-
|1.9.5||
106+
|1.9.5|Correct Unicode regex regression introduced in 1.9.4|
107107
</details>
108108

109109
---

0 commit comments

Comments
 (0)