From 76e6078983f727c4eb6d3d6b72c1548f02ca2f9c Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 09:58:58 -0800 Subject: [PATCH] Update Strings --- Strings.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Strings.md b/Strings.md index cadde47..e5763ec 100644 --- a/Strings.md +++ b/Strings.md @@ -23,10 +23,27 @@ ehs::Str_8 str = "Hello World!"; str.ToLower(); ``` **Result:** str == "hello world!" + +### GetLower +This method will turn all English alphabetic characters into their lower case equivalent on a new string object and return it. +```cpp +ehs::Str_8 a = "Hello World!"; +ehs::Str_8 b = a.GetLower(); +``` +**Result:** b == "hello world!" + ### ToUpper This method will turn all English alphabetic characters into their upper case equivalent on the current object. ```cpp ehs::Str_8 str = "Hello World!"; str.ToUpper(); ``` -**Result:** str == "HELLO WORLD!" \ No newline at end of file +**Result:** str == "HELLO WORLD!" + +### GetUpper +This method will turn all English alphabetic characters into their upper case equivalent on a new string object and return it. +```cpp +ehs::Str_8 a = "Hello World!"; +ehs::Str_8 b = a.GetUpper(); +``` +**Result:** b == "HELLO WORLD!" \ No newline at end of file