Q about search for segments containing numbers

Hi there,

I need to find all segments containing numbers, both segments containing only numbers but also segments containing both numbers and words. I have tried the advanced filters, but without sucess (only numbers is easy), I guess my brain is not logically enough.

Anyone? Much appriciated!

Best, Knut

Parents Reply
  • There is no list, you can learn regex from this website for example: https://www.regular-expressions.info/

    In general:

    \d is a digit

    \w is a so called word character (includes letters and digits and other signs to build words)

    \s is a space character

    . matches any character

    To find a dot you need to "escape" it, means \.

    To find a date: \d\d\.\d\d\.\d\d\d\d => finds 15.01.2021 \d\d\\d\d-\d\d-\d\d finds 2021-01-15

    and so on.

    If you speak German, there are two webinars left on Regex: http://seminare.bdue.de/4888
    The basics have already been covered, but are recorded, so I think you could get the recordings too.

    _________________________________________________________

    When asking for help here, please be as accurate as possible. Please always remember to give the exact version of product used and all possible error messages received. The better you describe your problem, the better help you will get.

    Want to learn more about Trados Studio? Visit the Community Hub. Have a good idea to make Trados Studio better? Publish it here.

Children
No Data