All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threatconnect.sdk.parser.util.regex.IPAddressExtractor Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.threatconnect.sdk.parser.util.regex;

import com.threatconnect.sdk.parser.util.RegexUtil;

public class IPAddressExtractor extends RegexExtractor
{
	public IPAddressExtractor(String input) throws MatchNotFoundException
	{
		super(RegexUtil.REGEX_IP_EXTRACT, input);
	}
	
	public String getIPAddress()
	{
		return group(1);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy