TextText ManipulationOn this pageText Manipulation Text Length Returns the number of characters in a text string. "abc" -> 3 "" (empty) -> 0 Is Empty? Checks if the text contains no characters. Returns true or false. Reverse Text Reverses the order of characters in the text. "hello" -> "olleh"