On what basis comparison is done in strings? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

On what basis comparison is done in strings?

I was writing codes with comparison of strings(words or sentences) and I was unable to understand, on what basis the interpreter was comparing the strings.

13th Apr 2019, 5:41 AM
Kamal Jain
Kamal Jain - avatar
4 Answers
+ 5
Here is an ASCII table for your reference: http://www.asciitable.com/mobile/
14th Apr 2019, 9:34 AM
Sonic
Sonic - avatar
0
~ swim ~ Thanks. Very helpful
19th Apr 2019, 11:34 AM
Zhiming Li
Zhiming Li - avatar
- 1
Kamal Jain Default comparison in case sensitive languages is done using lexographic ordering of characters i.e that is the position of characters in the Ascii Table. If the compared character match then string length is taken into account. Some languages may have additional criteria. so in str1 = "abcB" str2 = "abcA", str2 is less than str1 because char 'A' comes before char 'B'. str3 = "abcBb" between str1 and str3, the compared characters matches but str3 is bigger lengthwise than str1, hence it is bigger. Non case sensitive languages ignores the position of upper case and lowercase characters in Ascii table and sort on alphbetical order. In alphanumeric string like str4="Bdc5E" and str5= "Bdc4E", str5 is less than str4 because 4 comes before 5. This is mostly the case with compare function in almost all languages (i do not know of the exception) String compare functions returns 0 if first string equals second string >0 if first string greater than second string <0 if first string less than second string. If you do not understand string comparison, then on what basis were you writing the code? What was your expectation? An advice - read the theory first before doing the practicals !
14th Apr 2019, 2:20 AM
Jay
Jay - avatar
- 2
hi
14th Apr 2019, 2:20 AM
Jay
Jay - avatar