Gnu/coreutils/String-expressions
Next: Numeric expressions, Up: expr invocation [Contents][Index]
16.4.1 String expressions
expr supports pattern matching and other string operators. These
have higher precedence than both the numeric and relational operators (in
the next sections).
- ‘
string : regex’ Perform pattern matching. The arguments are converted to strings and the second is considered to be a (basic, a la GNU
grep) regular expression, with a^implicitly prepended. The first argument is then matched against this regular expression.If the match succeeds and
regexuses ‘\(’ and ‘\)’, the:expression returns the part ofstringthat matched the subexpression; otherwise, it returns the number of characters matched.If the match fails, the
:operator returns the null string if ‘\(’ and ‘\)’ are used inregex, otherwise 0.Only the first ‘
\( … \)’ pair is relevant to the return value; additional pairs are meaningful only for grouping the regular expression operators.In the regular expression,
\+,\?, and\|are operators which respectively match one or more, zero or one, or separate alternatives. SunOS and otherexpr’s treat these as regular characters. (POSIX allows either behavior.) See Regular Expression Library in Regex, for details of regular expression syntax. Some examples are in Examples of expr.- ‘
match string regex’ An alternative way to do pattern matching. This is the same as ‘
string : regex’.- ‘
substr string position length’ Returns the substring of
stringbeginning atpositionwith length at mostlength. If eitherpositionorlengthis negative, zero, or non-numeric, returns the null string.- ‘
index string charset’ Returns the first position in
stringwhere the first character incharsetwas found. If no character incharsetis found instring, return 0.- ‘
length string’ Returns the length of
string.- ‘
+ token’ Interpret
tokenas a string, even if it is a keyword likematchor an operator like/. This makes it possible to testexpr length + "$x"orexpr + "$x" : '.*/\(.\)'and have it do the right thing even if the value of$xhappens to be (for example)/orindex. This operator is a GNU extension. Portable shell scripts should use" $token" : ' \(.*\)'instead of+ "$token".
To make expr interpret keywords as strings, you must use the
quote operator.
Next: Numeric expressions, Up: expr invocation [Contents][Index]