I want to separate a string at the decimal point into two strings with the command 'Regex.split'. This does not seem to work.
Example: '123.456 cm' split into '123' and '456 cm'
Dim str () As String = Regex.split (".", "123.456 cm")
Someone knows why?
Example: '123.456 cm' split into '123' and '456 cm'
Dim str () As String = Regex.split (".", "123.456 cm")
Someone knows why?