RosettaCodeData/Task/String-comparison/AWK/string-comparison.awk

18 lines
676 B
Awk
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
BEGIN {
a="BALL"
b="BELL"
if (a == b) { print "The strings are equal" }
if (a != b) { print "The strings are not equal" }
2015-02-20 00:35:01 -05:00
if (a > b) { print "The first string is lexically after than the second" }
if (a < b) { print "The first string is lexically before than the second" }
2013-04-11 01:07:29 -07:00
if (a >= b) { print "The first string is not lexically before than the second" }
if (a <= b) { print "The first string is not lexically after than the second" }
# to make a case insensitive comparison convert both strings to the same lettercase:
a="BALL"
b="ball"
if (tolower(a) == tolower(b)) { print "The first and second string are the same disregarding letter case" }
}