I've a sequence of tags and I only need to remove those tags having the following structure:
*:*:*
They are machine tags such as: flickr:event:132394 and not user submitted tags. What regular expression should I use ?
fields[i] = fields[i].replaceAll(" ,.*:.*", "");
thanks