未翻訳
このページはまだ翻訳されていません。原文の内容が表示されています。
regex
A regular expression.
Can be used as a show rule selector and with
string methods like find
, split
, and replace
.
See here for a specification of the supported syntax.
Example
// Works with string methods.
#"a,b;c".split(regex("[,;]"))
// Works with show rules.
#show regex("\d+"): set text(red)
The numbers 1 to 10.

コンストラクタParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
Create a regular expression from a string.
regex
RequiredRequired parameters must be specified when calling the function.PositionalPositional parameters are specified in order, without names.
Required
Required parameters must be specified when calling the function.
Positional
Positional parameters are specified in order, without names.
The regular expression as a string.
Most regex escape sequences just work because they are not valid Typst
escape sequences. To produce regex escape sequences that are also valid in
Typst (e.g. \\
), you need to escape twice. Thus, to match a verbatim
backslash, you would need to write regex("\\\\")
.
If you need many escape sequences, you can also create a raw element and extract its text to use it for your regular expressions:
例を表示
regex(`\d+\.\d+\.\d+`.text)
.