⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
cmake
/
Help
/
command
/
Edit File: string.rst
string ------ String operations. Synopsis ^^^^^^^^ .. parsed-literal:: `Search and Replace`_ string(`FIND`_
[...]) string(`REPLACE`_
...) string(`REGEX MATCH`_
...) string(`REGEX MATCHALL`_
...) string(`REGEX REPLACE`_
...) `Manipulation`_ string(`APPEND`_
[
...]) string(`PREPEND`_
[
...]) string(`CONCAT`_
[
...]) string(`JOIN`_
[
...]) string(`TOLOWER`_
) string(`TOUPPER`_
) string(`LENGTH`_
) string(`SUBSTRING`_
) string(`STRIP`_
) string(`GENEX_STRIP`_
) string(`REPEAT`_
) `Comparison`_ string(`COMPARE`_
) `Hashing`_ string(`\
`_
) `Generation`_ string(`ASCII`_
...
) string(`HEX`_
) string(`CONFIGURE`_
[...]) string(`MAKE_C_IDENTIFIER`_
) string(`RANDOM`_ [
...]
) string(`TIMESTAMP`_
[
] [UTC]) string(`UUID`_
...) `JSON`_ string(JSON
[ERROR_VARIABLE
] {:ref:`GET
` | :ref:`TYPE
` | :ref:`LENGTH
` | :ref:`REMOVE
`}
[
...]) string(JSON
[ERROR_VARIABLE
] :ref:`MEMBER
`
[
...]
) string(JSON
[ERROR_VARIABLE
] :ref:`SET
`
[
...]
) string(JSON
[ERROR_VARIABLE
] :ref:`EQUAL
`
) Search and Replace ^^^^^^^^^^^^^^^^^^ Search and Replace With Plain Strings """"""""""""""""""""""""""""""""""""" .. _FIND: .. code-block:: cmake string(FIND
[REVERSE]) Return the position where the given ``
`` was found in the supplied ``
``. If the ``REVERSE`` flag was used, the command will search for the position of the last occurrence of the specified ``
``. If the ``
`` is not found, a position of -1 is returned. The ``string(FIND)`` subcommand treats all strings as ASCII-only characters. The index stored in ``
`` will also be counted in bytes, so strings containing multi-byte characters may lead to unexpected results. .. _REPLACE: .. code-block:: cmake string(REPLACE
[
...]) Replace all occurrences of ``
`` in the ``
`` with ``
`` and store the result in the ``
``. Search and Replace With Regular Expressions """"""""""""""""""""""""""""""""""""""""""" .. _`REGEX MATCH`: .. code-block:: cmake string(REGEX MATCH
[
...]) Match the ``
`` once and store the match in the ``
``. All ``
`` arguments are concatenated before matching. Regular expressions are specified in the subsection just below. .. _`REGEX MATCHALL`: .. code-block:: cmake string(REGEX MATCHALL
[
...]) Match the ``
`` as many times as possible and store the matches in the ``
`` as a list. All ``
`` arguments are concatenated before matching. .. _`REGEX REPLACE`: .. code-block:: cmake string(REGEX REPLACE
[
...]) Match the ``
`` as many times as possible and substitute the ``
`` for the match in the output. All ``
`` arguments are concatenated before matching. The ``
`` may refer to parenthesis-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`: Regex Specification """"""""""""""""""" The following characters have special meaning in regular expressions: ``^`` Matches at beginning of input ``$`` Matches at end of input ``.`` Matches any single character ``\
`` Matches the single character specified by ``
``. Use this to match special regex characters, e.g. ``\.`` for a literal ``.`` or ``\\`` for a literal backslash ``\``. Escaping a non-special character is unnecessary but allowed, e.g. ``\a`` matches ``a``. ``[ ]`` 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. .. versionadded:: 3.9 All regular expression-related commands, including e.g. :command:`if(MATCHES)`, save subgroup matches in the variables :variable:`CMAKE_MATCH_
` for ``
`` 0..9. ``*``, ``+`` and ``?`` have higher precedence than concatenation. ``|`` has lower precedence than concatenation. This means that the regular expression ``^ab+d$`` matches ``abbd`` but not ``ababd``, and the regular expression ``^(ab|cd)$`` matches ``ab`` but not ``abd``. CMake language :ref:`Escape Sequences` such as ``\t``, ``\r``, ``\n``, and ``\\`` may be used to construct literal tabs, carriage returns, newlines, and backslashes (respectively) to pass in a regex. For example: * The quoted argument ``"[ \t\r\n]"`` specifies a regex that matches any single whitespace character. * The quoted argument ``"[/\\]"`` specifies a regex that matches a single forward slash ``/`` or backslash ``\``. * The quoted argument ``"[A-Za-z0-9_]"`` specifies a regex that matches any single "word" character in the C locale. * The quoted argument ``"\\(\\a\\+b\\)"`` specifies a regex that matches the exact string ``(a+b)``. Each ``\\`` is parsed in a quoted argument as just ``\``, so the regex itself is actually ``\(\a\+\b\)``. This can alternatively be specified in a :ref:`bracket argument` without having to escape the backslashes, e.g. ``[[\(\a\+\b\)]]``. Manipulation ^^^^^^^^^^^^ .. _APPEND: .. code-block:: cmake string(APPEND
[
...]) .. versionadded:: 3.4 Append all the ``
`` arguments to the string. .. _PREPEND: .. code-block:: cmake string(PREPEND
[
...]) .. versionadded:: 3.10 Prepend all the ``
`` arguments to the string. .. _CONCAT: .. code-block:: cmake string(CONCAT
[
...]) Concatenate all the ``
`` arguments together and store the result in the named ``
``. .. _JOIN: .. code-block:: cmake string(JOIN
[
...]) .. versionadded:: 3.12 Join all the ``
`` arguments together using the ``
`` string and store the result in the named ``
``. To join a list's elements, prefer to use the ``JOIN`` operator from the :command:`list` command. This allows for the elements to have special characters like ``;`` in them. .. _TOLOWER: .. code-block:: cmake string(TOLOWER
) Convert ``
`` to lower characters. .. _TOUPPER: .. code-block:: cmake string(TOUPPER
) Convert ``
`` to upper characters. .. _LENGTH: .. code-block:: cmake string(LENGTH
) Store in an ``
`` a given string's length in bytes. Note that this means if ``
`` contains multi-byte characters, the result stored in ``
`` will *not* be the number of characters. .. _SUBSTRING: .. code-block:: cmake string(SUBSTRING
) Store in an ``
`` a substring of a given ``
``. If ``
`` is ``-1`` the remainder of the string starting at ``
`` will be returned. .. versionchanged:: 3.2 If ``
`` is shorter than ``
`` then the end of the string is used instead. Previous versions of CMake reported an error in this case. Both ``
`` and ``
`` are counted in bytes, so care must be exercised if ``
`` could contain multi-byte characters. .. _STRIP: .. code-block:: cmake string(STRIP
) Store in an ``
`` a substring of a given ``
`` with leading and trailing spaces removed. .. _GENEX_STRIP: .. code-block:: cmake string(GENEX_STRIP
) .. versionadded:: 3.1 Strip any :manual:`generator expressions
` from the input ``
`` and store the result in the ``
``. .. _REPEAT: .. code-block:: cmake string(REPEAT
) .. versionadded:: 3.15 Produce the output string as the input ``
`` repeated ``
`` times. Comparison ^^^^^^^^^^ .. _COMPARE: .. code-block:: cmake string(COMPARE LESS
) string(COMPARE GREATER
) string(COMPARE EQUAL
) string(COMPARE NOTEQUAL
) string(COMPARE LESS_EQUAL
) string(COMPARE GREATER_EQUAL
) Compare the strings and store true or false in the ``
``. .. versionadded:: 3.7 Added the ``LESS_EQUAL`` and ``GREATER_EQUAL`` options. .. _`Supported Hash Algorithms`: Hashing ^^^^^^^ .. _`HASH`: .. code-block:: cmake string(
) Compute a cryptographic hash of the ``
`` string. The supported ``
`` algorithm names are: ``MD5`` Message-Digest Algorithm 5, RFC 1321. ``SHA1`` US Secure Hash Algorithm 1, RFC 3174. ``SHA224`` US Secure Hash Algorithms, RFC 4634. ``SHA256`` US Secure Hash Algorithms, RFC 4634. ``SHA384`` US Secure Hash Algorithms, RFC 4634. ``SHA512`` US Secure Hash Algorithms, RFC 4634. ``SHA3_224`` Keccak SHA-3. ``SHA3_256`` Keccak SHA-3. ``SHA3_384`` Keccak SHA-3. ``SHA3_512`` Keccak SHA-3. .. versionadded:: 3.8 Added the ``SHA3_*`` hash algorithms. Generation ^^^^^^^^^^ .. _ASCII: .. code-block:: cmake string(ASCII
[
...]
) Convert all numbers into corresponding ASCII characters. .. _HEX: .. code-block:: cmake string(HEX
) .. versionadded:: 3.18 Convert each byte in the input ``
`` to its hexadecimal representation and store the concatenated hex digits in the ``
``. Letters in the output (``a`` through ``f``) are in lowercase. .. _CONFIGURE: .. code-block:: cmake string(CONFIGURE
[@ONLY] [ESCAPE_QUOTES]) Transform a ``
`` like :command:`configure_file` transforms a file. .. _MAKE_C_IDENTIFIER: .. code-block:: cmake string(MAKE_C_IDENTIFIER
) Convert each non-alphanumeric character in the input ``
`` to an underscore and store the result in the ``
``. If the first character of the ``
`` is a digit, an underscore will also be prepended to the result. .. _RANDOM: .. code-block:: cmake string(RANDOM [LENGTH
] [ALPHABET
] [RANDOM_SEED
]
) Return a random string of given ``
`` consisting of characters from the given ``
``. 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: .. code-block:: cmake string(TIMESTAMP
[
] [UTC]) Write a string representation of the current date and/or time to the ``
``. If the command is unable to obtain a timestamp, the ``
`` will be set to the empty string ``""``. The optional ``UTC`` flag requests the current date/time representation to be in Coordinated Universal Time (UTC) rather than local time. The optional ``
`` may contain the following format specifiers: ``%%`` .. versionadded:: 3.8 A literal percent sign (%). ``%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). ``%b`` .. versionadded:: 3.7 Abbreviated month name (e.g. Oct). ``%B`` .. versionadded:: 3.10 Full month name (e.g. October). ``%M`` The minute of the current hour (00-59). ``%s`` .. versionadded:: 3.6 Seconds since midnight (UTC) 1-Jan-1970 (UNIX time). ``%S`` The second of the current minute. 60 represents a leap second. (00-60) ``%f`` .. versionadded:: 3.23 The microsecond of the current second (000000-999999). ``%U`` The week number of the current year (00-53). ``%V`` .. versionadded:: 3.22 The ISO 8601 week number of the current year (01-53). ``%w`` The day of the current week. 0 is Sunday. (0-6) ``%a`` .. versionadded:: 3.7 Abbreviated weekday name (e.g. Fri). ``%A`` .. versionadded:: 3.10 Full weekday name (e.g. Friday). ``%y`` The last two digits of the current year (00-99). ``%Y`` The current year. ``%z`` .. versionadded:: 3.26 The offset of the time zone from UTC, in hours and minutes, with format ``+hhmm`` or ``-hhmm``. ``%Z`` .. versionadded:: 3.26 The time zone name. Unknown format specifiers will be ignored and copied to the output as-is. If no explicit ``
`` is given, it will default to: :: %Y-%m-%dT%H:%M:%S for local time. %Y-%m-%dT%H:%M:%SZ for UTC. .. versionadded:: 3.8 If the ``SOURCE_DATE_EPOCH`` environment variable is set, its value will be used instead of the current time. See https://reproducible-builds.org/specs/source-date-epoch/ for details. .. _UUID: .. code-block:: cmake string(UUID
NAMESPACE
NAME
TYPE
[UPPER]) .. versionadded:: 3.1 Create a universally unique identifier (aka GUID) as per RFC4122 based on the hash of the combined values of ``
`` (which itself has to be a valid UUID) and ``
``. 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. .. _JSON: JSON ^^^^ .. versionadded:: 3.19 Functionality for querying a JSON string. .. note:: In each of the following JSON-related subcommands, if the optional ``ERROR_VARIABLE`` argument is given, errors will be reported in ``
`` and the ``
`` will be set to ``
-[
...]-NOTFOUND`` with the path elements up to the point where the error occurred, or just ``NOTFOUND`` if there is no relevant path. If an error occurs but the ``ERROR_VARIABLE`` option is not present, a fatal error message is generated. If no error occurs, the ``
`` will be set to ``NOTFOUND``. .. _JSON_GET: .. code-block:: cmake string(JSON
[ERROR_VARIABLE
] GET
[
...]) Get an element from ``
`` at the location given by the list of ``
`` arguments. Array and object elements will be returned as a JSON string. Boolean elements will be returned as ``ON`` or ``OFF``. Null elements will be returned as an empty string. Number and string types will be returned as strings. .. _JSON_TYPE: .. code-block:: cmake string(JSON
[ERROR_VARIABLE
] TYPE
[
...]) Get the type of an element in ``
`` at the location given by the list of ``
`` arguments. The ``
`` will be set to one of ``NULL``, ``NUMBER``, ``STRING``, ``BOOLEAN``, ``ARRAY``, or ``OBJECT``. .. _JSON_MEMBER: .. code-block:: cmake string(JSON
[ERROR_VARIABLE
] MEMBER
[
...]
) Get the name of the ``
``-th member in ``
`` at the location given by the list of ``
`` arguments. Requires an element of object type. .. _JSON_LENGTH: .. code-block:: cmake string(JSON
[ERROR_VARIABLE
] LENGTH
[
...]) Get the length of an element in ``
`` at the location given by the list of ``
`` arguments. Requires an element of array or object type. .. _JSON_REMOVE: .. code-block:: cmake string(JSON
[ERROR_VARIABLE
] REMOVE