| 1 | = String = |
| 2 | [[TracNav(TracNav/TOC_Development)]] |
| 3 | |
| 4 | String defines several useful functions for string manipulation. The following list gives a short overview: |
| 5 | |
| 6 | * '''strip('''''string* pointer''''')''': |
| 7 | * '''getStripped('''''string''''')''': |
| 8 | |
| 9 | * '''removeTrailingWhitespaces('''''string''''')''': |
| 10 | |
| 11 | * '''getNextQuote('''''string''''', '''''start''''')''': |
| 12 | * '''isBetweenQuotes('''''string''''', '''''position''''')''': |
| 13 | |
| 14 | * '''hasStringBetweenQuotes('''''string''''')''': |
| 15 | * '''getStringBetweenQuotes('''''string''''')''': |
| 16 | |
| 17 | * '''stripEnclosingQuotes('''''string''''')''': |
| 18 | * '''stripEnclosingBraces('''''string''''')''': |
| 19 | |
| 20 | * '''isEmpty('''''string''''')''': |
| 21 | * '''isComment('''''string''''')''': |
| 22 | * '''isNumeric('''''string''''')''': |
| 23 | |
| 24 | * '''addSlashes('''''string''''')''': |
| 25 | * '''removeSlashes('''''string''''')''': |
| 26 | |
| 27 | * '''lowercase('''''string* pointer''''')''': |
| 28 | * '''getLowercase('''''string''''')''': |
| 29 | |
| 30 | * '''uppercase('''''string* pointer''''')''': |
| 31 | * '''getUppercase('''''string''''')''': |
| 32 | |
| 33 | * '''nocaseCmp('''''string1''''', '''''string2''''')''': |
| 34 | * '''nocaseCmp('''''string1''''', '''''string2''''', '''''length''''')''': |
| 35 | |
| 36 | * '''hasComment('''''string''''')''': |
| 37 | * '''getComment('''''string''''')''': |
| 38 | * '''getCommentPosition('''''string''''')''': |
| 39 | * '''getNextCommentPosition('''''string''''', '''''start''''')''': |