注意 当サイトは、Typst v0.11.1 公式ドキュメントを、日本語コミュニティが非公式に翻訳したものです。誤訳・未訳・古い情報が含まれている可能性があるため、公式ドキュメント との併用を推奨します。このサイトの内容に誤りを発見された方は、GitHubリポジトリまでご報告を頂けましたら幸いです。我々のコミュニティにご興味のある方は、ぜひ非公式Discordサーバー「くみはんクラブ」にご参加ください。
Warning: This site provides an unofficial translation of the Typst v0.11.1 documentation by the Japanese Community. Please note that there may be some inaccuracies, untranslated sections or outdated information. We highly recommend referring to the latest official documentation as well. If you find any errors in the content, please let us know through our GitHub repository. If you are interested in our community, feel free to join our unofficial Discord server, “Kumihan Club.”
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

Constructor
If a type has a constructor, you can call it like a function to create a new value of the type.

Create a regular expression from a string.

regex() -> regex

regex
str
RequiredPositional
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:

View example

regex(`\d+\.\d+\.\d+`.text).