Return true if CHAR is in one of the ranges: ‘[a-z]’, ‘[A-Z]’.
Return true if CHAR is in the range: 0-9.
Return true if:
mbfl_string_is_alpha_char CHAR || \ mbfl_string_is_digit_char CHAR
Return true if CHAR is none of the characters: ‘ ’, ‘\n’, ‘\r’, ‘\f’, ‘\t’. CHAR is meant to be the unquoted version of the non–blank characters, the one obtained with:
$'CHAR'
Return true if mbfl_string_is_alnum_char() returns true when applied to CHAR or
CHAR is an underscore, ‘_’.
Return true if mbfl_string_is_alnum_char() returns true when applied to CHAR or
CHAR is an underscore, ‘_’, or dash, ‘-’.
Like mbfl_string_is_identifier_char(), but also accept dots ‘.’.
Return true if CHAR is in the following set, otherwise return false:
. , : ;
{ [ ( ) ] }
_
= < > ~
+ - * / %
& $ ! ?
" ' ` ^
| # Return true if CHAR is in the following set, otherwise return false:
a e i o u y
Return true if CHAR is in the following set, otherwise return false:
b c d f g h j k l m n p q r s t v w x z
Return true if CHAR is in the following set, otherwise return false:
b c d f g h j k l m n p q r s t v w x z
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9
Return true if CHAR is in the following set, otherwise return false:
A E I O U Y
Return true if CHAR is in the following set, otherwise return false:
B C D F G H J K L M N P Q R S T V W X Z
Return true if CHAR is in the following set, otherwise return false:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Return true if CHAR is in the following set, otherwise return false:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9
Return true if CHAR is in the following set, otherwise return false:
A B C D E F 0 1 2 3 4 5 6 7 8 9
Return true if CHAR is in the following set, otherwise return false:
a e i o u y A E I O U Y
Return true if CHAR is in the following set, otherwise return false:
b c d f g h j k l m n p q r s t v w x z B C D F G H J K L M N P Q R S T V W X Z
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
This is equivalent to mbfl_string_is_alpha_char().
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9
This is equivalent to mbfl_string_is_alnum_char().
Return true if CHAR is in the following set, otherwise return false:
A B C D E F a b c d e f 0 1 2 3 4 5 6 7 8 9
Return true if CHAR is in the following set, otherwise return false:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 2 3 4 5 6 7
according to RFC 4648, without padding character, as described in:
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9 + /
according to RFC 4648, without padding character, as described in:
Return true if CHAR is in the following set, otherwise return false:
a b c d e f g h i j k l m n o p q r s t u v w x y z
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
0 1 2 3 4 5 6 7 8 9
. , : ;
{ [ ( ) ] }
_
= < > ~
+ - * / %
& $ ! ?
" ' ` ^
| # This document describes version 3.0.0-devel.9 of Marcos Bash Functions Library.