Add reverse case function

This commit is contained in:
Cuttlerat
2019-06-09 13:28:29 +03:00
parent 62bbe5adb9
commit 187e5a1eca
4 changed files with 61 additions and 0 deletions

View File

@@ -209,6 +209,32 @@ $ upper "HELLO"
HELLO
```
## Reverse a string case
**CAVEAT:** Requires `bash` 4+
**Example Function:**
```sh
reverse_case() {
# Usage: reverse_case "string"
printf '%s\n' "${1~~}"
}
```
**Example Usage:**
```shell
$ reverse_case "hello"
HELLO
$ reverse_case "HeLlO"
hElLo
$ reverse_case "HELLO"
hello
```
## Trim quotes from a string
**Example Function:**