Quantcast
Channel: masking of email address in java - Stack Overflow
Viewing all articles
Browse latest Browse all 9

Answer by TheLostMind for masking of email address in java

$
0
0

Your Look-ahead is kind of complicated. Try this code :

public static void main(String... args) throws Exception {    String s = "nileshkemse@gmail.com";    s= s.replaceAll("(?<=.{3}).(?=.*@)", "*");    System.out.println(s);}

O/P :

nil********@gmail.com

Viewing all articles
Browse latest Browse all 9

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>