From c06afd8d23b5a98306d774eb8de2304f11aa6344 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 09:53:03 -0800 Subject: [PATCH] Update Strings --- Strings.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Strings.md b/Strings.md index 65abac0..2e1cdd8 100644 --- a/Strings.md +++ b/Strings.md @@ -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!"; str.ToLower(); ``` -**Result:** _str_ = _"hello world!"_ +**Result:** str = "hello world!" +### ToUpper +```cpp +ehs::Str_8 str = "Hello World!"; +str.ToUpper(); +``` +**Result:** str = "HELLO WORLD!" \ No newline at end of file