Comparing strings
(Created page with "If you want to compare two strings, case insensitive, use the follow <string 1>.compare(<string 2>, true) Read more here [https://learn.microsoft.com/en-us/dotnet/api/system....")
 
No edit summary
Line 1: Line 1:
If you want to compare two strings, case insensitive, use the follow
If you want to compare two strings, case insensitive, use the follow
  <string 1>.compare(<string 2>, true)
  <string 1>.compare(<string 2>, true) = 0
Read more here [https://learn.microsoft.com/en-us/dotnet/api/system.string.compare String.Compare method]
Read more here [https://learn.microsoft.com/en-us/dotnet/api/system.string.compare String.Compare method]

Revision as of 21:03, 26 March 2023

If you want to compare two strings, case insensitive, use the follow

<string 1>.compare(<string 2>, true) = 0

Read more here String.Compare method

This page was edited 50 days ago on 03/15/2024. What links here