import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexDigit
{
public static void main(String[] argv) throws Exception
{
String str = "Bienvenu sur Mesexemples.com copyright 2010-2012";
// Remplcer les chiffres par une étoile
System.out.println (str.replaceAll("[0-9]","*"));
}
}