Is there a quick way to remove personal information from TMs?

We have a few TMs with lots of personal information we'd like to remove, is there a quick way of doing this? We're talking about names, phone numbers, file and account numbers, addresses..

Parents Reply
  • Not quite... I guess I could have used that. \S finds any character apart from whitespace so it will find more than \w which only finds word characters. But you're right for this I could have probably used \w. Just extends the possible results

    Definition in regex buddy would be:

    \w
    Match a single character that is a “word character” (Unicode; any letter or ideograph, digit, connector punctuation)

    \S
    Match a single character that is NOT a “whitespace character” (any Unicode separator, tab, line feed, carriage return, vertical tab, form feed, next line)

    Paul Filkin | RWS Group

    ________________________
    Design your own training!

    You've done the courses and still need to go a little further, or still not clear? 
    Tell us what you need in our Community Solutions Hub

Children