As in post title, I need a VBA code (can be sub or function) to get an array of numeric values given a string input.
Suppose given a string variable: "H (120x150x250)x12.5x15/10",
desired output would be a double array with elements of 120, 150, 250, 12.5, 15, 10.
The string will have random format (unknown delimiter), so Split function can't be used.
I think hard but my brain can't find effective way to do this.
Any help guys? No need to be complete code, simply idea would be helpful.
TIA.
Suppose given a string variable: "H (120x150x250)x12.5x15/10",
desired output would be a double array with elements of 120, 150, 250, 12.5, 15, 10.
The string will have random format (unknown delimiter), so Split function can't be used.
I think hard but my brain can't find effective way to do this.
Any help guys? No need to be complete code, simply idea would be helpful.
TIA.