Skip to content

Instantly share code, notes, and snippets.

@malikkurosaki
Created October 25, 2019 17:19
Show Gist options
  • Save malikkurosaki/4824f4caddb50587f2dc4e2ccdbf69f6 to your computer and use it in GitHub Desktop.
Save malikkurosaki/4824f4caddb50587f2dc4e2ccdbf69f6 to your computer and use it in GitHub Desktop.
jadikan email sebagai key

jadikan email sebagai key

 public static String getGoogleMail() {
        if (user() != null){
            String[] eml = user().getEmail().split("@");
            return eml[0].replaceAll("[^A-Za-z0-9 ]","xxx");
        }else {
            return null;
        }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment