I'm trying to split up the following string into substrings
Dim value as String = "+1.0 A0 -256 B0 -2823" 'this is a line from a txtfile
I want to split the string in the following 3 substrings.
Dim value1 as String= "+1.0"
Dim A0 as String = "-256"
Dim B0 as String = "-2823"
the String is always in the following format:
+## A0 #### B0 ###
I know I can achieve it with the use of value.Replace and value.Substring, but I don't know how exactly.
I have tried stuff like this, but it didn't work
value1 = Value.Substring(0, "A0".IndexOf("A0"))