2013-10-15 19:17:36 +04:00
|
|
|
string
|
|
|
|
------
|
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
.. only:: html
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
String operations.
|
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Search and Replace
|
|
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
FIND
|
|
|
|
""""
|
|
|
|
|
2013-10-15 19:17:36 +04:00
|
|
|
::
|
|
|
|
|
|
|
|
string(FIND <string> <substring> <output variable> [REVERSE])
|
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
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.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
REPLACE
|
|
|
|
"""""""
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
string(REPLACE <match_string>
|
|
|
|
<replace_string> <output variable>
|
|
|
|
<input> [<input>...])
|
|
|
|
|
|
|
|
Replace all occurrences of ``match_string`` in the input
|
2015-06-05 00:51:22 +03:00
|
|
|
with ``replace_string`` and store the result in the output.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Regular Expressions
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
2015-07-06 23:28:04 +03:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
REGEX MATCH
|
|
|
|
"""""""""""
|
2013-10-21 20:49:15 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
string(REGEX MATCH <regular_expression>
|
|
|
|
<output variable> <input> [<input>...])
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Match the regular expression once and store the match in the output variable.
|
2015-09-14 17:37:59 +03:00
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
REGEX MATCHALL
|
|
|
|
""""""""""""""
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
string(REGEX MATCHALL <regular_expression>
|
|
|
|
<output variable> <input> [<input>...])
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Match the regular expression as many times as possible and store the matches
|
|
|
|
in the output variable as a list.
|
2015-09-14 17:37:59 +03:00
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
2014-11-13 01:57:16 +03:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
REGEX REPLACE
|
|
|
|
"""""""""""""
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
string(REGEX REPLACE <regular_expression>
|
|
|
|
<replace_expression> <output variable>
|
|
|
|
<input> [<input>...])
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Match the regular expression as many times as possible and substitute the
|
|
|
|
replacement expression for the match in the output.
|
2015-09-14 17:37:59 +03:00
|
|
|
All ``<input>`` arguments are concatenated before matching.
|
2015-09-14 17:35:50 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Regex Specification
|
|
|
|
"""""""""""""""""""
|
2013-10-15 19:17:36 +04:00
|
|
|
|
|
|
|
The following characters have special meaning in regular expressions:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
^ Matches at beginning of input
|
|
|
|
$ Matches at end of input
|
|
|
|
. Matches any single character
|
|
|
|
[ ] Matches any character(s) inside the brackets
|
|
|
|
[^ ] Matches any character(s) not inside the brackets
|
|
|
|
- Inside brackets, specifies an inclusive range between
|
|
|
|
characters on either side e.g. [a-f] is [abcdef]
|
|
|
|
To match a literal - using brackets, make it the first
|
|
|
|
or the last character e.g. [+*/-] matches basic
|
|
|
|
mathematical operators.
|
|
|
|
* Matches preceding pattern zero or more times
|
|
|
|
+ Matches preceding pattern one or more times
|
|
|
|
? Matches preceding pattern zero or once only
|
|
|
|
| Matches a pattern on either side of the |
|
|
|
|
() Saves a matched subexpression, which can be referenced
|
|
|
|
in the REGEX REPLACE operation. Additionally it is saved
|
|
|
|
by all regular expression-related commands, including
|
|
|
|
e.g. if( MATCHES ), in the variables CMAKE_MATCH_(0..9).
|
|
|
|
|
2015-06-05 00:51:22 +03:00
|
|
|
``*``, ``+`` and ``?`` have higher precedence than concatenation. ``|``
|
|
|
|
has lower precedence than concatenation. This means that the regular
|
2015-09-14 17:35:50 +03:00
|
|
|
expression ``^ab+d$`` matches ``abbd`` but not ``ababd``, and the regular
|
|
|
|
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
|
|
|
|
"""""""
|
2013-10-15 19:17:36 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
|
|
|
|
|
|
|
string(TOUPPER <string1> <output variable>)
|
|
|
|
|
|
|
|
Convert string to upper characters.
|
|
|
|
|
|
|
|
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
|
2013-10-15 19:17:36 +04:00
|
|
|
and/or time to the output variable.
|
|
|
|
|
|
|
|
Should the command be unable to obtain a timestamp the output variable
|
|
|
|
will be set to the empty string "".
|
|
|
|
|
2015-06-05 00:51:22 +03:00
|
|
|
The optional ``UTC`` flag requests the current date/time representation to
|
2013-10-15 19:17:36 +04:00
|
|
|
be in Coordinated Universal Time (UTC) rather than local time.
|
|
|
|
|
2015-06-05 00:51:22 +03:00
|
|
|
The optional ``<format string>`` may contain the following format
|
2013-10-15 19:17:36 +04:00
|
|
|
specifiers:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
%d The day of the current month (01-31).
|
|
|
|
%H The hour on a 24-hour clock (00-23).
|
|
|
|
%I The hour on a 12-hour clock (01-12).
|
|
|
|
%j The day of the current year (001-366).
|
|
|
|
%m The month of the current year (01-12).
|
|
|
|
%M The minute of the current hour (00-59).
|
|
|
|
%S The second of the current minute.
|
|
|
|
60 represents a leap second. (00-60)
|
|
|
|
%U The week number of the current year (00-53).
|
|
|
|
%w The day of the current week. 0 is Sunday. (0-6)
|
|
|
|
%y The last two digits of the current year (00-99)
|
|
|
|
%Y The current year.
|
|
|
|
|
|
|
|
Unknown format specifiers will be ignored and copied to the output
|
|
|
|
as-is.
|
|
|
|
|
2015-06-05 00:51:22 +03:00
|
|
|
If no explicit ``<format string>`` is given it will default to:
|
2013-10-15 19:17:36 +04:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
%Y-%m-%dT%H:%M:%S for local time.
|
|
|
|
%Y-%m-%dT%H:%M:%SZ for UTC.
|
|
|
|
|
2014-03-18 19:21:08 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
::
|
|
|
|
|
|
|
|
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])
|
2014-08-26 00:44:06 +04:00
|
|
|
|
2015-09-14 17:35:50 +03:00
|
|
|
Create a univerally unique identifier (aka GUID) as per RFC4122
|
2015-06-05 00:51:22 +03:00
|
|
|
based on the hash of the combined values of ``<namespace>``
|
|
|
|
(which itself has to be a valid UUID) and ``<name>``.
|
2014-08-26 00:44:06 +04:00
|
|
|
The hash algorithm can be either ``MD5`` (Version 3 UUID) or
|
|
|
|
``SHA1`` (Version 5 UUID).
|
|
|
|
A UUID has the format ``xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx``
|
|
|
|
where each `x` represents a lower case hexadecimal character.
|
|
|
|
Where required an uppercase representation can be requested
|
|
|
|
with the optional ``UPPER`` flag.
|