I have lines that look like this
12345678:firstname
ID:Name
What is the regex code for deleting everything after the ":"
This is what I have so far, but its not getting all the characters
12345678:firstname
ID:Name
What is the regex code for deleting everything after the ":"
This is what I have so far, but its not getting all the characters
Code:
:[a-z\s]*$

Comment