This extions provides some commands to make daily tasks easier. Such as removing duplicate characters, sorting, hashing, encoding, and so on.
| command | Description | Usable for |
|---|---|---|
| string-manipulation.reverse | Reverse the selected string | any text |
| string-manipulation.countChars | Count the chars in the string | any text |
| string-manipulation.base64encode | Convert text to base64 | any text |
| string-manipulation.base64decode | Convert from base64 to text | base64 string |
| string-manipulation.casingToLower | Convert text to lower | any char |
| string-manipulation.casingToUpper | Convert text to upper | any char |
| string-manipulation.casingInvert | Convert lower to upper case and the other way round | any char |
| string-manipulation.removeSpaces | Remove all spaces | spaces |
| string-manipulation.removeMultipleSpaces | Remove multiple spaces. Keep one | multiple spaces |
| string-manipulation.removeNewLines | Remove all new lines | line breaks |
| string-manipulation.removeMultipleNewLines | Remove multiple line breaks. Keep one. | multiple line breaks |
| string-manipulation.toMd5 | Calculate md5 hash of text | any text |
| string-manipulation.sortByLengthDesc | Sort by line length | any text |
| string-manipulation.sortByLengthAsc | Sort by line length | any text |
| string-manipulation.toHex | Convert numbers to hex | numbers |
Initial release of String Manipulator