Next: Character Functions, Previous: Array Functions, Up: The Standard Library [Contents][Index]
The Poke standard library provides the following functions to do work on strings:
| • ltrim: | Remove leading characters. | |
| • rtrim: | Remove trailing characters. | |
| • strchr: | Locate a character in a string, from the beginning. | |
| • strrchr: | Locate a character in a string, from the end. | |
| • strstr: | Locate a string in a string, from the beginning. | |
| • strtok: | String tokenization. |