v.20.4Improvement

Extend splitByString to Support Empty Strings as Separators

Extend splitByString to support empty strings as separators. #9742 (hcz)
Extend the splitByString function to support empty strings as separators.

Why it matters

This feature allows users to use an empty string as a separator in splitByString, enabling new ways to split strings, such as splitting into individual characters, which was not possible before.

How to use it

Simply call splitByString with an empty string as the separator, for example: splitByString('', 'your_string') to split a string into its constituent characters.