LIKE()
Posted: Thu Feb 27, 2020 4:20 pm
The LIKE() function in XSharp appears to be case insensitive whereas in Foxpro it is case sensitive:
As far as I can tell there is no flag or parameter in Foxpro to make LIKE case-insensitive. One would have to use either UPPER() or LOWER() for that.
Code: Select all
local lValue as Boolean
lValue=LIKE("Cha*","CHARLES") // False in Foxpro True in Xsharp