How to use Split or use Regex if I want to Split a list of text by “.” , but if the text have two or more “.” (example : “Hello… Brother”) they still only define to 1 string ?
Because if i use variableString.Split(Cchar(".")) if the String is “Hello… Brother” it will be “Hello”
“.”
“.”
“.”
“Brother”
I’m very happy for any solutions… Thanks Before.