Reputation: 193
http://www.example.com data:blaefrferter
http://www.example.com data:blaefrferter
http://www.example.com data:blaefrferter
I want get rid of the data:blaefrferter
using regex, I've tried this ^.*$\s but it doesn't match, what is my mistake?
Upvotes: 0
Views: 86
Reputation: 35368
In sublime enter ([^ ]*).*$
for Find What:
and $1
for Replace With:
Upvotes: 1