Update Strings

2025-11-20 11:26:55 -08:00
parent 31c5a62d11
commit 11d0101df9

@@ -48,7 +48,7 @@ ehs::Str_8 b = a.GetUpper();
**Result:** b == "HELLO WORLD!" **Result:** b == "HELLO WORLD!"
### Split ### 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 ```cpp
ehs::Str_8 a = "Hello! How are you?"; ehs::Str_8 a = "Hello! How are you?";
ehs::Vector<ehs::Str_8> b = a.Split(" ", 1); ehs::Vector<ehs::Str_8> b = a.Split(" ", 1);