No matching definitions.

tur/re

stdlib/re.tur

pure-Turmeric regular expressions (POSIX ERE subset).

Since: Phase B1 (libc); pure-Turmeric rewrite 2026-07

defdata

RxCls

(defdata RxCls :copy (RxClsNil) (RxClsRange))
defdata

Regex

(defdata Regex :copy (RChar) (RAny) (RClass) (RStar) (RPlus) (ROpt) (RConcat) (RAlt) (RGroup) (REmpty) (RNever) (RBegin) (REnd))
defdata

RxPos

(defdata RxPos :copy (RxNil) (RxCons))
defdata

RxPair

(defdata RxPair (RxIP))
defdata

RxParse

(defdata RxParse (RxPR))
defdata

RxStrs

(defdata RxStrs (RxStrsNil) (RxStrsCons))
defn

re-pos-append

(re-pos-append [a :RxPos b :RxPos] :RxPos)
defn

re-pos-contains?

(re-pos-contains? [a :RxPos v :int] :bool)
defn

re-pos-empty?

(re-pos-empty? [a :RxPos] :bool)
defn

re-pos-len

(re-pos-len [a :RxPos] :int)
defn

re-pos-max

(re-pos-max [a :RxPos acc :int] :int)
defn

re-pos-dedup-go

(re-pos-dedup-go [a :RxPos seen :RxPos] :RxPos)
defn

re-pos-dedup

(re-pos-dedup [a :RxPos] :RxPos)
defn

re-range-list

(re-range-list [lo :int hi :int] :RxPos)
defn

re-cstr-eq-loop

(re-cstr-eq-loop [a :cstr b :cstr i :int n :int] :bool)
defn

re-cstr-eq?

(re-cstr-eq? [a :cstr b :cstr] :bool)
defn

re-class-match?

(re-class-match? [items :RxCls b :int] :bool)
defn

re-step-char

(re-step-char [starts :RxPos input :cstr len :int c :int] :RxPos)
defn

re-step-any

(re-step-any [starts :RxPos input :cstr len :int] :RxPos)
defn

re-step-class

(re-step-class [starts :RxPos input :cstr len :int neg :bool items :RxCls] :RxPos)
defn

re-step-begin

(re-step-begin [starts :RxPos] :RxPos)
defn

re-step-end

(re-step-end [starts :RxPos len :int] :RxPos)
defn

re-run-k

(re-run-k [re :Regex starts :RxPos input :cstr len :int] :RxPos)
defn

re-digit?

(re-digit? [c :int] :bool)
defn

re-read-int

(re-read-int [input :cstr len :int pos :int acc :int] :RxPair)
defn

re-repeat-n

(re-repeat-n [atom :Regex n :int] :Regex)
defn

re-repeat-opt

(re-repeat-opt [atom :Regex n :int] :Regex)
defn

re-parse-brace

(re-parse-brace [input :cstr len :int atom :Regex pos :int] :RxParse)
defn

re-apply-quant

(re-apply-quant [input :cstr len :int ra :Regex pos :int] :RxParse)
defn

re-parse-escape

(re-parse-escape [input :cstr len :int pos :int] :RxParse)
defn

re-scan-name-end

(re-scan-name-end [input :cstr len :int pos :int] :int)
defn

re-posix-ranges

(re-posix-ranges [name :cstr acc :RxCls] :RxCls)
defn

re-posix-open?

(re-posix-open? [input :cstr len :int pos :int] :bool)
defn

re-range-here?

(re-range-here? [input :cstr len :int pos :int] :bool)
defn

re-re-parse-class-items

(re-re-parse-class-items [input :cstr len :int pos :int neg :bool acc :RxCls] :RxParse)
defn

re-parse-class

(re-parse-class [input :cstr len :int pos :int] :RxParse)
defn

re-concat-end?

(re-concat-end? [input :cstr len :int pos :int] :bool)
defn

re-parse-go

(re-parse-go [input :cstr len :int pos :int mode :int acc :Regex] :RxParse)
defn

re-find-from

(re-find-from [re :Regex input :cstr len :int from :int] :RxPair)
defn

re-find-all-go

(re-find-all-go [re :Regex input :cstr len :int from :int] :RxStrs)
defn

re-replace-go

(re-replace-go [re :Regex input :cstr len :int from :int replacement :cstr acc :cstr] :cstr)
defn

re/compile

(re/compile [pattern :cstr] :Regex)

compile a regular expression pattern into a Regex.

patternNUL-terminated regex pattern cstr (POSIX ERE subset)

A Regex value (the parsed AST). Parsing is total: a malformed pattern is parsed best-effort rather than rejected, so there is no error return.

(re/compile "([0-9]+)")  ; => <Regex>

Since: Phase B2

defn

re/match?

(re/match? [re :Regex input :cstr] :bool)

test whether a pattern matches anywhere in input.

recompiled Regex from re/compile
inputinput string cstr

true if the pattern matches at some position, false otherwise.

(re/match? (re/compile "[0-9]+") "abc123")  ; => true

Since: Phase B2

defn

re/match

(re/match [re :Regex input :cstr] :(Option cstr))

return the leftmost-longest whole match as an Option.

recompiled Regex from re/compile
inputinput string cstr

(some matched-substring) on a match, or (none) if there is no match.

(re/match (re/compile "[0-9]+") "a12b")  ; => (some "12")

Since: Phase B2 (pure-Turmeric rewrite)

defn

re/find-all

(re/find-all [re :Regex input :cstr] :RxStrs)

all non-overlapping matches, left to right.

recompiled Regex from re/compile
inputinput string cstr

An RxStrs cons list of matched substrings (empty list if none).

(re/find-all (re/compile "[0-9]+") "a1b22c")  ; => ("1" "22")

Since: Phase B2 (pure-Turmeric rewrite)

defn

re/replace

(re/replace [re :Regex input :cstr replacement :cstr] :cstr)

replace the first match with a literal replacement.

recompiled Regex from re/compile
inputinput string cstr
replacementliteral replacement cstr (no backreferences)

A fresh cstr with the first match replaced, or a copy of input if there is no match.

(re/replace (re/compile "world") "hello world" "WORLD")  ; => "hello WORLD"

Since: Phase B2

defn

re/replace-all

(re/replace-all [re :Regex input :cstr replacement :cstr] :cstr)

replace all non-overlapping matches with a literal.

recompiled Regex from re/compile
inputinput string cstr
replacementliteral replacement cstr (no backreferences)

A fresh cstr with every match replaced.

(re/replace-all (re/compile "[0-9]") "a1b2c3" "X")  ; => "aXbXcX"

Since: Phase B2

defn

re/free

(re/free [re :Regex] :void)

no-op shim (a Regex is a GC/heap value, not a malloc'd handle).

rea Regex (ignored)

Since: Phase B2 (no-op since the pure-Turmeric rewrite)

defn

re/match-free

(re/match-free [m :(Option cstr)] :void)

no-op shim; the Option result needs no manual free.

defn

re/find-all-free

(re/find-all-free [lst :RxStrs] :void)

no-op shim; the RxStrs result needs no manual free.

defn

re/wrap-paren

(re/wrap-paren [p :cstr] :cstr)

internal: wrap one pattern as "(p)" (heap; caller frees).

defn

re/union-acc

(re/union-acc [acc :cstr patterns :int] :cstr)

internal: right-fold the rest onto acc, joining with "|".

defn

re/union-patterns

(re/union-patterns [patterns :int] :cstr)

build an alternation regex string from a cons list of

patterns:int cons list of cstr patterns (head = cstr pointer)

A heap cstr containing the unioned pattern, or 0.

(re/union-patterns (cons "[A-Za-z]+" (cons "[0-9]+" 0)))
    ; => "([A-Za-z]+)|([0-9]+)"

Since: Phase RU1

defn

re/compile-union

(re/compile-union [patterns :int] :Regex)

compile an alternation of multiple patterns into a Regex.

patterns:int cons list of cstr patterns (head = cstr pointer)

A compiled Regex on success, or (RNever) -- a regex that matches nothing -- if the input list is empty or contains a null element.

(re/compile-union (cons "[A-Za-z]+" (cons "[0-9]+" 0)))  ; => <Regex>

Since: Phase RU2