Hi,
I'm trying to create a single instance of a regex term.
i.e.
boolean rProcessEndpoint = Pattern.matches("[http://]{1,1}", processEndpointInput);
System.out.println(""+processEndpointInput);
However, with this particular instance, you can type "http://http://" and it will return true.
Here is my source of information:
http://www.dreambank.net/regex.html
Here is where I test my regex:
http://www.regular-expressions.info/javascriptexample.html
Thanks,
-Ash.