Jump to content

Recommended Posts

Posted

What is the difference between casesense 0 and 2 in the function StringInStr()?

0 = not case sensitive, using the user's locale (default)

2 = not case sensitive, using a basic/faster comparison

Can someone explain me in plain terms, or better using an example? Thank you!!

Posted

This example returns 14 and 0:

ConsoleWrite(StringInStr("Test with an Ü (german u umlaut)", "ü", 0) & @LF)
ConsoleWrite(StringInStr("Test with an Ü (german u umlaut)", "ü", 2) & @LF)
So there is no difference for plain english but for languages with umlaut, accented characters etc.

My UDFs and Tutorials:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...