Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Not A Bug
-
Affects Version/s: 1.6.3
-
Fix Version/s: 1.7.5
-
Component/s: regular expressions
-
Labels:None
-
Environment:Suse Linux Enterprise 10 64Bit AMD Opteron Groovy 1.6
-
Number of attachments :
Description
Hi!
I tried some regular expressions and i checked that some code wasnt working with uniicode. So i created an ISO 8859-15 Document and see its working ...
The Code:
def checkSpelling(spellingAttempt, spellingRegularExpression)
{
if (spellingAttempt ==~ spellingRegularExpression)
else
{ println("Sorry, try again.") }}
locationData = "Liverpool, England: 53° 25? 0? N 3° 0? 0?"
myRegularExpression = /([a-zA-Z]), ([a-zA-Z]): ([0-9]). ([0-9]). ([0-9]). ([A-Z]) ([0-9]). ([0-9]). ([0-9])./
checkSpelling(locationData,myRegularExpression)
i will attach the same file as unicode and iso however
the iso file works correct but the uni doesn't
pls fix this issue since it's really important
can someone recreate this? with the 2 attachements it should be recreateable. Or is this more a java issue?