import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexHDigit {
public static void main(String[] argv) throws Exception
{
String str = "Bienvenu sur Mesexemples.com copyright 2010-2012";
// Remplcer les caractères hexadécimals par une étoile
System.out.println (str.replaceAll("[0-9A-Fa-f]","*"));
if("b".matches("[0-9A-Fa-f]"))
System.out.println ("Le String correspond au pattern");
}
}