You are on page 1of 1

* TextBuilder Definitions for:

* Custom grammatical properties: {X}


* Regular expressions (regex): /X/
* Predefined substitution constants for commonly used complex strings: [X]

* [COUNT] encapsulates the notation for choosing the correct article or number
text.
#[COUNT]
=(#(.G:un/una/un)/dos/tres/cuatro/cinco/seis/siete/ocho/nueve/diez/[.#])

* Noun-Case-property labels
#{C}
=nom/acc/gen/dat

* Gender-property labels
#{G}
=M/F/N

* Regex to detect next word starting with a vowel.


#/v/
=^\s*[aeiouAEIOU]

* Regex to detect if previous text ends with an s.


#/s/
=s$

* Substitution for primary-noun possessive suffix


#['s+]
=(#+'s/(.s?'/'s))

* Substitution for secondary-noun possessive suffix


#['s-]
=(#-'s/(.s?'/'s))

You might also like