|
|
@ -1,99 +1,84 @@
|
|
|
|
string
|
|
|
|
string
|
|
|
|
------
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. only:: html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
|
|
|
|
|
|
|
|
String operations.
|
|
|
|
String operations.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Search and Replace
|
|
|
|
|
|
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FIND
|
|
|
|
|
|
|
|
""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(FIND <string> <substring> <output variable> [REVERSE])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return the position where the given substring was found in
|
|
|
|
|
|
|
|
the supplied string. If the ``REVERSE`` flag was used, the command will
|
|
|
|
|
|
|
|
search for the position of the last occurrence of the specified
|
|
|
|
|
|
|
|
substring. If the substring is not found, a position of -1 is returned.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
REPLACE
|
|
|
|
|
|
|
|
"""""""
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
string(REGEX MATCH <regular_expression>
|
|
|
|
|
|
|
|
<output variable> <input> [<input>...])
|
|
|
|
|
|
|
|
string(REGEX MATCHALL <regular_expression>
|
|
|
|
|
|
|
|
<output variable> <input> [<input>...])
|
|
|
|
|
|
|
|
string(REGEX REPLACE <regular_expression>
|
|
|
|
|
|
|
|
<replace_expression> <output variable>
|
|
|
|
|
|
|
|
<input> [<input>...])
|
|
|
|
|
|
|
|
string(REPLACE <match_string>
|
|
|
|
string(REPLACE <match_string>
|
|
|
|
<replace_string> <output variable>
|
|
|
|
<replace_string> <output variable>
|
|
|
|
<input> [<input>...])
|
|
|
|
<input> [<input>...])
|
|
|
|
string(CONCAT <output variable> [<input>...])
|
|
|
|
|
|
|
|
string(<MD5|SHA1|SHA224|SHA256|SHA384|SHA512>
|
|
|
|
|
|
|
|
<output variable> <input>)
|
|
|
|
|
|
|
|
string(COMPARE EQUAL <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE NOTEQUAL <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE LESS <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE GREATER <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(ASCII <number> [<number> ...] <output variable>)
|
|
|
|
|
|
|
|
string(CONFIGURE <string1> <output variable>
|
|
|
|
|
|
|
|
[@ONLY] [ESCAPE_QUOTES])
|
|
|
|
|
|
|
|
string(TOUPPER <string1> <output variable>)
|
|
|
|
|
|
|
|
string(TOLOWER <string1> <output variable>)
|
|
|
|
|
|
|
|
string(LENGTH <string> <output variable>)
|
|
|
|
|
|
|
|
string(SUBSTRING <string> <begin> <length> <output variable>)
|
|
|
|
|
|
|
|
string(STRIP <string> <output variable>)
|
|
|
|
|
|
|
|
string(RANDOM [LENGTH <length>] [ALPHABET <alphabet>]
|
|
|
|
|
|
|
|
[RANDOM_SEED <seed>] <output variable>)
|
|
|
|
|
|
|
|
string(FIND <string> <substring> <output variable> [REVERSE])
|
|
|
|
|
|
|
|
string(TIMESTAMP <output variable> [<format string>] [UTC])
|
|
|
|
|
|
|
|
string(MAKE_C_IDENTIFIER <input string> <output variable>)
|
|
|
|
|
|
|
|
string(GENEX_STRIP <input string> <output variable>)
|
|
|
|
|
|
|
|
string(UUID <output variable> NAMESPACE <namespace> NAME <name>
|
|
|
|
|
|
|
|
TYPE <MD5|SHA1> [UPPER])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
REGEX MATCH will match the regular expression once and store the match
|
|
|
|
Replace all occurrences of ``match_string`` in the input
|
|
|
|
in the output variable.
|
|
|
|
with ``replace_string`` and store the result in the output.
|
|
|
|
|
|
|
|
|
|
|
|
REGEX MATCHALL will match the regular expression as many times as
|
|
|
|
Regular Expressions
|
|
|
|
possible and store the matches in the output variable as a list.
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
REGEX REPLACE will match the regular expression as many times as
|
|
|
|
REGEX MATCH
|
|
|
|
possible and substitute the replacement expression for the match in
|
|
|
|
"""""""""""
|
|
|
|
the output. The replace expression may refer to paren-delimited
|
|
|
|
|
|
|
|
subexpressions of the match using \1, \2, ..., \9. Note that two
|
|
|
|
|
|
|
|
backslashes (\\1) are required in CMake code to get a backslash
|
|
|
|
|
|
|
|
through argument parsing.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
REPLACE will replace all occurrences of match_string in the input with
|
|
|
|
::
|
|
|
|
replace_string and store the result in the output.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CONCAT will concatenate all the input arguments together and store
|
|
|
|
string(REGEX MATCH <regular_expression>
|
|
|
|
the result in the named output variable.
|
|
|
|
<output variable> <input> [<input>...])
|
|
|
|
|
|
|
|
|
|
|
|
MD5, SHA1, SHA224, SHA256, SHA384, and SHA512 will compute a
|
|
|
|
Match the regular expression once and store the match in the output variable.
|
|
|
|
cryptographic hash of the input string.
|
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
|
|
|
|
|
|
|
|
|
|
|
COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and store
|
|
|
|
REGEX MATCHALL
|
|
|
|
true or false in the output variable.
|
|
|
|
""""""""""""""
|
|
|
|
|
|
|
|
|
|
|
|
ASCII will convert all numbers into corresponding ASCII characters.
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
CONFIGURE will transform a string like CONFIGURE_FILE transforms a
|
|
|
|
string(REGEX MATCHALL <regular_expression>
|
|
|
|
file.
|
|
|
|
<output variable> <input> [<input>...])
|
|
|
|
|
|
|
|
|
|
|
|
TOUPPER/TOLOWER will convert string to upper/lower characters.
|
|
|
|
Match the regular expression as many times as possible and store the matches
|
|
|
|
|
|
|
|
in the output variable as a list.
|
|
|
|
|
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
|
|
|
|
|
|
|
|
|
|
|
LENGTH will return a given string's length.
|
|
|
|
REGEX REPLACE
|
|
|
|
|
|
|
|
"""""""""""""
|
|
|
|
|
|
|
|
|
|
|
|
SUBSTRING will return a substring of a given string. If length is -1
|
|
|
|
::
|
|
|
|
the remainder of the string starting at begin will be returned.
|
|
|
|
|
|
|
|
If string is shorter than length then end of string is used instead.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
string(REGEX REPLACE <regular_expression>
|
|
|
|
CMake 3.1 and below reported an error if length pointed past
|
|
|
|
<replace_expression> <output variable>
|
|
|
|
the end of string.
|
|
|
|
<input> [<input>...])
|
|
|
|
|
|
|
|
|
|
|
|
STRIP will return a substring of a given string with leading and
|
|
|
|
Match the regular expression as many times as possible and substitute the
|
|
|
|
trailing spaces removed.
|
|
|
|
replacement expression for the match in the output.
|
|
|
|
|
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
|
|
|
|
|
|
|
|
|
|
|
RANDOM will return a random string of given length consisting of
|
|
|
|
The replace expression may refer to paren-delimited subexpressions of the
|
|
|
|
characters from the given alphabet. Default length is 5 characters
|
|
|
|
match using ``\1``, ``\2``, ..., ``\9``. Note that two backslashes (``\\1``)
|
|
|
|
and default alphabet is all numbers and upper and lower case letters.
|
|
|
|
are required in CMake code to get a backslash through argument parsing.
|
|
|
|
If an integer RANDOM_SEED is given, its value will be used to seed the
|
|
|
|
|
|
|
|
random number generator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FIND will return the position where the given substring was found in
|
|
|
|
Regex Specification
|
|
|
|
the supplied string. If the REVERSE flag was used, the command will
|
|
|
|
"""""""""""""""""""
|
|
|
|
search for the position of the last occurrence of the specified
|
|
|
|
|
|
|
|
substring.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The following characters have special meaning in regular expressions:
|
|
|
|
The following characters have special meaning in regular expressions:
|
|
|
|
|
|
|
|
|
|
|
@ -118,21 +103,170 @@ The following characters have special meaning in regular expressions:
|
|
|
|
by all regular expression-related commands, including
|
|
|
|
by all regular expression-related commands, including
|
|
|
|
e.g. if( MATCHES ), in the variables CMAKE_MATCH_(0..9).
|
|
|
|
e.g. if( MATCHES ), in the variables CMAKE_MATCH_(0..9).
|
|
|
|
|
|
|
|
|
|
|
|
``*``, ``+`` and ``?`` have higher precedence than concatenation. | has lower
|
|
|
|
``*``, ``+`` and ``?`` have higher precedence than concatenation. ``|``
|
|
|
|
precedence than concatenation. This means that the regular expression
|
|
|
|
has lower precedence than concatenation. This means that the regular
|
|
|
|
"^ab+d$" matches "abbd" but not "ababd", and the regular expression
|
|
|
|
expression ``^ab+d$`` matches ``abbd`` but not ``ababd``, and the regular
|
|
|
|
"^(ab|cd)$" matches "ab" but not "abd".
|
|
|
|
expression ``^(ab|cd)$`` matches ``ab`` but not ``abd``.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Manipulation
|
|
|
|
|
|
|
|
^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
APPEND
|
|
|
|
|
|
|
|
""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(APPEND <string variable> [<input>...])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Append all the input arguments to the string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CONCAT
|
|
|
|
|
|
|
|
""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(CONCAT <output variable> [<input>...])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Concatenate all the input arguments together and store
|
|
|
|
|
|
|
|
the result in the named output variable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TOLOWER
|
|
|
|
|
|
|
|
"""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(TOLOWER <string1> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Convert string to lower characters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TOUPPER
|
|
|
|
|
|
|
|
"""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(TOUPPER <string1> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Convert string to upper characters.
|
|
|
|
|
|
|
|
|
|
|
|
TIMESTAMP will write a string representation of the current date
|
|
|
|
LENGTH
|
|
|
|
|
|
|
|
""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(LENGTH <string> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Store in an output variable a given string's length.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SUBSTRING
|
|
|
|
|
|
|
|
"""""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(SUBSTRING <string> <begin> <length> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Store in an output variable a substring of a given string. If length is
|
|
|
|
|
|
|
|
``-1`` the remainder of the string starting at begin will be returned.
|
|
|
|
|
|
|
|
If string is shorter than length then end of string is used instead.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
CMake 3.1 and below reported an error if length pointed past
|
|
|
|
|
|
|
|
the end of string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
STRIP
|
|
|
|
|
|
|
|
"""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(STRIP <string> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Store in an output variable a substring of a given string with leading and
|
|
|
|
|
|
|
|
trailing spaces removed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GENEX_STRIP
|
|
|
|
|
|
|
|
"""""""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(GENEX_STRIP <input string> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Strip any :manual:`generator expressions <cmake-generator-expressions(7)>`
|
|
|
|
|
|
|
|
from the ``input string`` and store the result in the ``output variable``.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Comparison
|
|
|
|
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(COMPARE EQUAL <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE NOTEQUAL <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE LESS <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
string(COMPARE GREATER <string1> <string2> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Compare the strings and store true or false in the output variable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Hashing
|
|
|
|
|
|
|
|
^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(<MD5|SHA1|SHA224|SHA256|SHA384|SHA512>
|
|
|
|
|
|
|
|
<output variable> <input>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Compute a cryptographic hash of the input string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Generation
|
|
|
|
|
|
|
|
^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ASCII
|
|
|
|
|
|
|
|
"""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(ASCII <number> [<number> ...] <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Convert all numbers into corresponding ASCII characters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CONFIGURE
|
|
|
|
|
|
|
|
"""""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(CONFIGURE <string1> <output variable>
|
|
|
|
|
|
|
|
[@ONLY] [ESCAPE_QUOTES])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Transform a string like :command:`configure_file` transforms a file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RANDOM
|
|
|
|
|
|
|
|
""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(RANDOM [LENGTH <length>] [ALPHABET <alphabet>]
|
|
|
|
|
|
|
|
[RANDOM_SEED <seed>] <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return a random string of given length consisting of
|
|
|
|
|
|
|
|
characters from the given alphabet. Default length is 5 characters
|
|
|
|
|
|
|
|
and default alphabet is all numbers and upper and lower case letters.
|
|
|
|
|
|
|
|
If an integer ``RANDOM_SEED`` is given, its value will be used to seed the
|
|
|
|
|
|
|
|
random number generator.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TIMESTAMP
|
|
|
|
|
|
|
|
"""""""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(TIMESTAMP <output variable> [<format string>] [UTC])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Write a string representation of the current date
|
|
|
|
and/or time to the output variable.
|
|
|
|
and/or time to the output variable.
|
|
|
|
|
|
|
|
|
|
|
|
Should the command be unable to obtain a timestamp the output variable
|
|
|
|
Should the command be unable to obtain a timestamp the output variable
|
|
|
|
will be set to the empty string "".
|
|
|
|
will be set to the empty string "".
|
|
|
|
|
|
|
|
|
|
|
|
The optional UTC flag requests the current date/time representation to
|
|
|
|
The optional ``UTC`` flag requests the current date/time representation to
|
|
|
|
be in Coordinated Universal Time (UTC) rather than local time.
|
|
|
|
be in Coordinated Universal Time (UTC) rather than local time.
|
|
|
|
|
|
|
|
|
|
|
|
The optional <format string> may contain the following format
|
|
|
|
The optional ``<format string>`` may contain the following format
|
|
|
|
specifiers:
|
|
|
|
specifiers:
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
::
|
|
|
@ -153,23 +287,31 @@ specifiers:
|
|
|
|
Unknown format specifiers will be ignored and copied to the output
|
|
|
|
Unknown format specifiers will be ignored and copied to the output
|
|
|
|
as-is.
|
|
|
|
as-is.
|
|
|
|
|
|
|
|
|
|
|
|
If no explicit <format string> is given it will default to:
|
|
|
|
If no explicit ``<format string>`` is given it will default to:
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
%Y-%m-%dT%H:%M:%S for local time.
|
|
|
|
%Y-%m-%dT%H:%M:%S for local time.
|
|
|
|
%Y-%m-%dT%H:%M:%SZ for UTC.
|
|
|
|
%Y-%m-%dT%H:%M:%SZ for UTC.
|
|
|
|
|
|
|
|
|
|
|
|
MAKE_C_IDENTIFIER will write a string which can be used as an
|
|
|
|
|
|
|
|
identifier in C.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
``GENEX_STRIP`` will strip any
|
|
|
|
::
|
|
|
|
:manual:`generator expressions <cmake-generator-expressions(7)>` from the
|
|
|
|
|
|
|
|
``input string`` and store the result in the ``output variable``.
|
|
|
|
string(MAKE_C_IDENTIFIER <input string> <output variable>)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Write a string which can be used as an identifier in C.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UUID
|
|
|
|
|
|
|
|
""""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string(UUID <output variable> NAMESPACE <namespace> NAME <name>
|
|
|
|
|
|
|
|
TYPE <MD5|SHA1> [UPPER])
|
|
|
|
|
|
|
|
|
|
|
|
UUID creates a univerally unique identifier (aka GUID) as per RFC4122
|
|
|
|
Create a univerally unique identifier (aka GUID) as per RFC4122
|
|
|
|
based on the hash of the combined values of <namespace>
|
|
|
|
based on the hash of the combined values of ``<namespace>``
|
|
|
|
(which itself has to be a valid UUID) and <name>.
|
|
|
|
(which itself has to be a valid UUID) and ``<name>``.
|
|
|
|
The hash algorithm can be either ``MD5`` (Version 3 UUID) or
|
|
|
|
The hash algorithm can be either ``MD5`` (Version 3 UUID) or
|
|
|
|
``SHA1`` (Version 5 UUID).
|
|
|
|
``SHA1`` (Version 5 UUID).
|
|
|
|
A UUID has the format ``xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx``
|
|
|
|
A UUID has the format ``xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx``
|
|
|
|