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
Name | Type | Required | Description |
---|---|---|---|
ip | string | ✔️ | 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_string | ip_long |
---|---|
192.168.1.1 | 3232235777 |
192.168.1.1/24 | 3232235776 |
255.255.255.255/31 | 4294967294 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.