parse_version()

Learn how to use the parse_version() function to convert the input string representation of the version to a comparable decimal number,

Converts the input string representation of a version number into a decimal number that can be compared.

Syntax

parse_version (version)

Parameters

NameTypeRequiredDescription
versionstring✔️The version to be parsed.

Returns

If conversion is successful, the result is a decimal; otherwise, the result is null.

Examples

Parse version strings

The following query shows version strings with their parsed version numbers.

let dt = datatable(v: string)
    [
    "0.0.0.5", "0.0.7.0", "0.0.3", "0.2", "0.1.2.0", "1.2.3.4", "1"
];
dt
| extend parsedVersion = parse_version(v)

Output

vparsedVersion
0.0.0.55
0.0.7.0700,000,000
0.0.3300,000,000
0.220,000,000,000,000,000
0.1.2.010,000,000,200,000,000
1.2.3.41,000,000,020,000,000,300,000,004
11,000,000,000,000,000,000,000,000

Compare parsed version strings

The following query identifies which labs have equipment needing updates by comparing their parsed version strings to the minimum version number “1.0.0.0”.

let dt = datatable(lab: string, v: string)
[
    "Lab A", "0.0.0.5",
    "Lab B", "0.0.7.0",
    "Lab D","0.0.3",
    "Lab C", "0.2", 
    "Lab G", "0.1.2.0",
    "Lab F", "1.2.3.4",
    "Lab E", "1",
];
dt
| extend parsed_version = parse_version(v)
| extend needs_update = iff(parsed_version < parse_version("1.0.0.0"), "Yes", "No")
| project lab, v, needs_update
| sort by lab asc , v, needs_update

Output

labvneeds_update
Lab A0.0.0.5Yes
Lab B0.0.7.0Yes
Lab C0.2Yes
Lab D0.0.3Yes
Lab E1No
Lab F1.2.3.4No
Lab G0.1.2.0Yes