2012年8月28日火曜日

5.1.4.1. String comparison

Table 5-1. String comparison operators
Operator True if...
str1 = str2[4] str1 matches str2
str1 != str2 str1 does not match str2
str1 < str2 str1 is less than str2
str1 > str2 str1 is greater than str2
-n str1 str1 is not null (has length greater than 0)
-z str1 str1 is null (has length 0)

0 件のコメント:

コメントを投稿