Update Strings

2025-11-20 09:53:03 -08:00
parent 723e67787a
commit c06afd8d23

@@ -21,4 +21,10 @@ The examples below will only be using UTF-8 strings to demonstrate it's function
ehs::Str_8 str = "Hello World!"; ehs::Str_8 str = "Hello World!";
str.ToLower(); str.ToLower();
``` ```
**Result:** _str_ = _"hello world!"_ **Result:** str = "hello world!"
### ToUpper
```cpp
ehs::Str_8 str = "Hello World!";
str.ToUpper();
```
**Result:** str = "HELLO WORLD!"