Hi,
i need a Regex to do this ( catch only real words ):
Inputstring:
hello,[email protected]
Process:
String theMagicRegEx = "?????";
String[] arrayvar = asdf.split(theMagicRegEx);
Output (arrayvar) should be this:
hello
sdfsdf
yahoo
email
com
Question: What is the value of theMagicRegEx?
Thanks a lot