Dear Colleagues,
Can someone tell me how to write a regex that would find the segments that contain all capital words in a Studio file? I need to apply special formatting to these words.
Thank you!
Chunyi

Dear Colleagues,
Can someone tell me how to write a regex that would find the segments that contain all capital words in a Studio file? I need to apply special formatting to these words.
Thank you!
Chunyi
\b[A-Z]+\b with observe capitalization will find such words.
_________________________________________________________
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.
^[A-Z ,.;:]+$ will find segments with all capital letters, plus any spaces and some common punctuation characters.
Hi Jerzy,
It works, thank you!!!
^[A-Z\s,.;:]+$ all capitals, any type of space etc...