Liking cljdoc? Tell your friends :D

datatype.string.core


ascii-alphabetics?clj

(ascii-alphabetics? value)

Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [a-zA-Z], else returns false.
sourceraw docstring

ascii-alphanumerics?clj

(ascii-alphanumerics? value)

Returns true if the provided value is a string containing one or more characters in the set [a-zA-Z0-9], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [a-zA-Z0-9], else returns false.
sourceraw docstring

ascii-digits?clj

(ascii-digits? value)

Returns true if the provided value is a string containing zero or more characters in the set [0-9], else returns false.

Returns true if the provided value is a string containing zero or more
characters in the set [0-9], else returns false.
sourceraw docstring

blank?clj

(blank? value)

Returns true if the provided value is an empty string or a string containing only whitespace characters, else returns false.

Returns true if the provided value is an empty string or a string containing
only whitespace characters, else returns false.
sourceraw docstring

lowercase-ascii-alphabetics?clj

(lowercase-ascii-alphabetics? value)

Returns true if the provided value is a string containing one or more characters in the set [a-z], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [a-z], else returns false.
sourceraw docstring

lowercase-ascii-alphanumerics?clj

(lowercase-ascii-alphanumerics? value)

Returns true if the provided value is a string containing one or more characters in the set [a-z0-9], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [a-z0-9], else returns false.
sourceraw docstring

not-blank?clj

(not-blank? value)

Returns true if the provided value is a string containing non-whitespace characters, else returns false.

Returns true if the provided value is a string containing non-whitespace
characters, else returns false.
sourceraw docstring

uppercase-ascii-alphabetics?clj

(uppercase-ascii-alphabetics? value)

Returns true if the provided value is a string containing one or more characters in the set [A-Z], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [A-Z], else returns false.
sourceraw docstring

uppercase-ascii-alphanumerics?clj

(uppercase-ascii-alphanumerics? value)

Returns true if the provided value is a string containing one or more characters in the set [A-Z0-9], else returns false.

Returns true if the provided value is a string containing one or more
characters in the set [A-Z0-9], else returns false.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close