parse_ipv4()

Learn how to use the parse_ipv4() function to convert an IPv4 string to a long number in big-endian order.

Converts IPv4 string to a signed 64-bit wide long number representation in big-endian order.

Syntax

parse_ipv4(ip)

Parameters

NameTypeRequiredDescription
ipstring✔️The IPv4 that is converted to long. The value may include net-mask using IP-prefix notation.

Returns

If conversion is successful, the result is a long number. If conversion isn’t successful, the result is null.

Example

datatable(ip_string: string)
[
    '192.168.1.1', '192.168.1.1/24', '255.255.255.255/31'
]
| extend ip_long = parse_ipv4(ip_string)

Output

ip_stringip_long
192.168.1.13232235777
192.168.1.1/243232235776
255.255.255.255/314294967294