Update Strings
@@ -21,10 +21,10 @@ The examples below will only be using UTF-8 strings to demonstrate it's function
|
||||
ehs::Str_8 str = "Hello World!";
|
||||
str.ToLower();
|
||||
```
|
||||
**Result:** str = "hello world!"
|
||||
**Result:** str == "hello world!"
|
||||
### ToUpper
|
||||
```cpp
|
||||
ehs::Str_8 str = "Hello World!";
|
||||
str.ToUpper();
|
||||
```
|
||||
**Result:** str = "HELLO WORLD!"
|
||||
**Result:** str == "HELLO WORLD!"
|
||||
Reference in New Issue
Block a user