Parse a string and vectorize the IP addresses within it
Examples
# \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)
#> Error in extract_IP(str1): could not find function "extract_IP"
# 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)
#> Error in extract_IP(str2): could not find function "extract_IP"
# }