====== Comparing Strings ====== ===== Code ===== if (orxString_Compare("String One", "String Two") == 0) { // is the same } else { // is not the same } int value = orxString_Compare("aa", "ab"); //value is -1 (smaller) int value2 = orxString_Compare("ab", "aa"); //value2 is 1 (larger) ===== More Information ===== For more details on string comparison, see the [[http://orx-project.org/orx/doc/html/group__orx_string.html#gafb8549f0953530a87577d2dbb0d09e0c|API entry]].