Update Strings
@@ -17,14 +17,14 @@ The examples below will only be using UTF-8 strings to demonstrate it's function
|
|||||||
# Examples
|
# Examples
|
||||||
## Lower/Upper
|
## Lower/Upper
|
||||||
### ToLower
|
### ToLower
|
||||||
This method will turn all English alphabetic characters into their lower case equivalent.
|
This method will turn all English alphabetic characters into their lower case equivalent on the current object.
|
||||||
```cpp
|
```cpp
|
||||||
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
|
### ToUpper
|
||||||
This method will turn all English alphabetic characters into their upper case equivalent.
|
This method will turn all English alphabetic characters into their upper case equivalent on the current object.
|
||||||
```cpp
|
```cpp
|
||||||
ehs::Str_8 str = "Hello World!";
|
ehs::Str_8 str = "Hello World!";
|
||||||
str.ToUpper();
|
str.ToUpper();
|
||||||
|
|||||||
Reference in New Issue
Block a user