extract_IP | R Documentation |
Parse a string and vectorize the IP addresses within it
extract_IP(input)
input |
input string containing IP |
extract_IP returns a vector of IP addresses
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.