This commit is contained in:
pablo rodriguez 2022-04-28 12:44:52 +02:00
parent e9ea32b247
commit 25e0eec66c
6 changed files with 2 additions and 1 deletions

Binary file not shown.

1
bin/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/MEPTL/

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -702,7 +702,7 @@ public class outils {
A = A.replace("'", "");
A = A.replace("&quot", "");
Pattern pt = Pattern.compile("[^a-z]"); // avec les chiffres "[^a-zA-Z0-9]"
Pattern pt = Pattern.compile("[^a-z0-9]"); // avec les chiffres "[^a-zA-Z0-9]"
Matcher match= pt.matcher(A);
while(match.find()){
String s= match.group();