Text Functions
FLEX text utilities.
Frequently Asked Questions 3
What are FLEX text functions?
FLEX text functions provide string manipulation utilities including case conversion, formatting, padding, searching, regex matching, and string similarity metrics.
How do I call a text function?
Use the namespace flex.text.<function>(). For example: flex.text.camelCase('hello world') returns 'helloWorld'.
Do text functions handle null input?
Yes. All FLEX text functions return null when given null input, making them safe to use with optional properties.