Java regex to check empty end of url

Program Description:

This program takes the end value from the url.

Program:

[java]import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexEmptyEnd {
public static String myurl = "http://ngdeveloper.com/regexpage&page=8372528";

public static void main(String[] args) {

String regex = "page=(.*?)$";

Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(myurl);
if (matcher.find()) {
String str = matcher.group(1);
System.out.println("page is "+str);
}
}
}[/java]

 

Output:

page is 8372528

Thanks for reading this post………!!!

Leave a Reply