In Java there is a method splitByCharacterType that takes a string, for example 0015j8*(, and split it into "0015","j","8","*","(". Is there a built in function like this in c#? If not how would I go around building a function to do this?
In Java there is a method splitByCharacterType that takes a string, for example 0015j8*(
Share
Usage as follows:
And the result is
"0015","j","8","*","("I recommend you implement as an extension method.