Frequently Asked Questions
What are FLEX text functions?
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?
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?
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.