I have a text field that contains version numbers in the format:
10.5.0
9.13.1
12.1.0 etc
I need to sort these to get the minimum value that appears.
I have used the min function, but that returns 10.5.0 in the example above, where it should return 9.13.1
can anyone tell me how it is possible to do what I want to do?
10.5.0
9.13.1
12.1.0 etc
I need to sort these to get the minimum value that appears.
I have used the min function, but that returns 10.5.0 in the example above, where it should return 9.13.1
can anyone tell me how it is possible to do what I want to do?