diff options
author | Stéphane Cerveau <scerveau@collabora.com> | 2020-07-09 12:34:34 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2020-07-20 20:04:01 -0400 |
commit | 8f106a2b9a7824075e55d3f044f2c0c5dd3ee700 (patch) | |
tree | 95d4b7f319fb62f1321b5a15af91bb0e48e55a9a /docs/markdown/Syntax.md | |
parent | 804a71e8f2b7c1011c91bd016df435fc952677a0 (diff) | |
download | meson-8f106a2b9a7824075e55d3f044f2c0c5dd3ee700.zip meson-8f106a2b9a7824075e55d3f044f2c0c5dd3ee700.tar.gz meson-8f106a2b9a7824075e55d3f044f2c0c5dd3ee700.tar.bz2 |
string: add substring method
This method aims to offer a simple way to 'substring'
an existing string with start and end values.
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 7cb39e9..bbe3dbb 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -220,6 +220,26 @@ is_x86 = target.startswith('x86') # boolean value 'true' is_bsd = target.to_lower().endswith('bsd') # boolean value 'true' ``` +#### .substring() + +Since 0.56.0, you can extract a substring from a string. + +```meson +# Similar to the Python str[start:end] syntax +target = 'x86_FreeBSD' +platform = target.substring(0, 3) # prefix string value 'x86' +system = target.substring(4) # suffix string value 'FreeBSD' +``` + +The method accepts negative values where negative `start` is relative to the end of +string `len(string) - start` as well as negative `end`. + +```meson +string = 'foobar' +target.substring(-5, -3) # => 'oo' +target.substring(1, -1) # => 'ooba' +``` + #### .split(), .join() ```meson |