This should find a match but it doesn't (thanks Little John)
Code: Select all
If CreateRegularExpression(0, "(?i)someäöü")
Dim Result$(0)
a = ExtractRegularExpression(0, "This is for SOMEÄÖÜ test.", result$())
Debug "Strings found: " + Str(a)
For k = 0 To a-1
Debug Result$(k)
Next
EndIf