注意:该中文文档为社区驱动的非官网文档,可能存在错译、漏译或过时等问题,请以官网文档 Documentation 为准,如发现错漏,也欢迎 您的贡献镜像)。Typst 非官方中文交流 QQ 群:793548390
Warning: the Chinese document is a community-driven non-official document, there may be mistranslation, omission or outdated problems, please refer to the official website documentation.
Typst 中文文档

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.
Preview

构造函数
如果类型具有构造函数,可以像函数一样调用它来创建一个该类型的值。

Create a regular expression from a string.

regex() -> regex

regex
str
必需参数位置参数
位置参数按顺序传入,不带名称。

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).