From 11d0101df9668c05b946a62d3a7b3fdb005abe5d Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 11:26:55 -0800 Subject: [PATCH] Update Strings --- Strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Strings.md b/Strings.md index 4e4f319..ce94cad 100644 --- a/Strings.md +++ b/Strings.md @@ -48,7 +48,7 @@ ehs::Str_8 b = a.GetUpper(); **Result:** b == "HELLO WORLD!" ### Split -This method will split a single string into multiple strings with the given delimiter and return a Vector container object. The first parameter is the given delimiter to split the string with. The second parameter is the maximum number of times to split the string; this can be set to zero for unlimited. +This method will split a single string into multiple strings with the given delimiter and return a Vector container object. The first parameter is the given delimiter to split the string with. The second parameter is the maximum number of times to split the string; this can be set to zero or unassigned a value for unlimited. ```cpp ehs::Str_8 a = "Hello! How are you?"; ehs::Vector b = a.Split(" ", 1);