https://bz.apache.org/ooo/show_bug.cgi?id=73565
bmarcelly <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #9 from bmarcelly <[email protected]> --- Easy workaround : convert to lower case before using InStr. Dim sInput As String Dim iPos as Integer sInput = "OpenOffice est GÉNIAL" iPos = Instr(LCase(sInput),"génial") print iPos -- You are receiving this mail because: You are on the CC list for the issue.
