mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
11 lines
167 B
XML
11 lines
167 B
XML
// Test regexes.
|
|
// Ref: false
|
|
|
|
---
|
|
{
|
|
let re = regex("(La)?TeX")
|
|
test(re.matches("La"), false)
|
|
test(re.matches("TeX"), true)
|
|
test(re.matches("LaTeX"), true)
|
|
}
|