Comparing strings
m ((username removed) (log details removed))
(Adding message template to the top of the page)
Line 1: Line 1:
{{message|Write the content here to display this box}}
If you want to compare two strings, case insensitive, use the following:
If you want to compare two strings, case insensitive, use the following:
  <string 1>.compare(<string 2>, true) = 0
  <string 1>.compare(<string 2>, true) = 0

Revision as of 22:14, 16 June 2024

This page was created by Lars.olofsson@mdriven.net on 2023-03-26. Last edited by Edgar on 2025-01-20.

Write the content here to display this box

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

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

Read more here: String.Compare method