Is it possible to split a string twice with regex? For example, say I have the string:
[email protected]|fname|lname
how can I split to the result is:
[email protected],fname,lname
thanks...
Is it possible to split a string twice with regex? For example, say I have the string:
[email protected]|fname|lname
how can I split to the result is:
[email protected],fname,lname
thanks...