How to separate the digits below by spaces that is, the first 3 numbers are always going to be the same, I look for the number 901, then I would need to separate the first and second digits that appear in this case (374.082,18) between the second and the third space (372,793.47) and so on.
The simple way would be string manipulation with .Split()
variable.Split(" "c)(0) variable.Split(" "c)(1) variable.Split(" "c)(2)
or if there is more than one space separating…
variable.Split({" “},StringSplitOptions.RemoveEmptyEntries)(0)
variable.Split({” “},StringSplitOptions.RemoveEmptyEntries)(1)
variable.Split({” "},StringSplitOptions.RemoveEmptyEntries)(2)