Go to the first, previous, next, last section, table of contents.
- `eq'
-
文字列の同値性(
==
は数値の同値性)。
(もし、状況に応じて ==
が
文字列および数値の両方の同値性を表す awk に慣れているなら、注意せよ!) - `ne'
-
文字列の非同値性(
!=
は数値の非同値性)。
- `lt'
-
文字列の less than 。
- `gt'
-
文字列の greater than 。
- `le'
-
文字列の less than or equal 。
- `ge'
-
文字列の greater than or equal 。
- `cmp'
-
文字列の比較。-1、0、または 1 を返す。
- `<=>'
-
数値の比較。-1、0、または 1 を返す。
Go to the first, previous, next, last section, table of contents.