From 31c5a62d11fce180817c6594679407f670c058ad Mon Sep 17 00:00:00 2001 From: Karutoh Date: Thu, 20 Nov 2025 11:26:19 -0800 Subject: [PATCH] Update Strings --- Strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Strings.md b/Strings.md index 928fc27..4e4f319 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 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. ```cpp ehs::Str_8 a = "Hello! How are you?"; ehs::Vector b = a.Split(" ", 1);