i want to replace email string, so example@example.com become examplexxxxxxx

i code like this but it did not work :

String input="$!email";  
String output = input.replaceAll("@$", "x");
System.out.println(output);

Please help

Hi, please check variable name

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.