Learn R Programming

quickcode (version 1.0.6)

extract_IP: Extract all IP addresses from a string

Description

Parse a string and vectorize the IP addresses within it

Usage

extract_IP(input)

Value

extract_IP returns a vector of IP addresses

Arguments

input

input string containing IP

Examples

Run this code
# \donttest{
# Extract all IP addresses from a string

# Example 1
# This example demonstrates the separate
# extraction of an IP address one per vector element:
str1 = c("Two IP(66.544.33.54) addresses
were discovered in the scan.
One was at 92.234.1.0.",
"The other IP was 62.3.45.255.")
extract_IP(str1)

# Example 2
# This example demonstrates the extraction
# of multiple IP addresses from a single vector element:
str2 = "Two IP addresses were discovered
in the scan. One was at 92.234.1.0.
The other IP was 62.3.45.255."
extract_IP(str2)
# }

Run the code above in your browser using DataLab