I was wondering what the regular expression would be to get everything after :
For example I have email and passwords stored as [email protected]:password
I just want to grab the password part. My regex grabs :password
Any ideas?
I was wondering what the regular expression would be to get everything after :
For example I have email and passwords stored as [email protected]:password
I just want to grab the password part. My regex grabs :password
Any ideas?
'.*?:(.*)'