Autosuggest wrongly suggests first word of segment

I have set up Regex Autosuggest to recognize brands and names in capital letters using the following:

Regex pattern: [A-Z][a-z]+

Replace pattern: $0

The problem is, the first common word of each segment which is, of course, capitalized is recognized. It is not a big problem per se, I could:

1. Just ignore it

or

2 Use Variables instead - making a list of brands and companies under a name tag called companies and use the following:

Regex pattern: (#Companies#)

Replace pattern: $0

but the point was to be able for Autosuggest to recognize brands/products/companies automatically when it is placed within a segment without having to populate my list of Companies variables.

Any thought?

PS: I assume "Regex pattern: [A-Z][a-z]+" is the culprit.

Parents
  • Hi ,

    There is no way for anything to just recognise brands/products/companies without there being a list somewhere for reference. Regex is a workaround for this but carries with it the likelihood of false positives as you work. I think your options are probably these:

    - use the variable list in the Rehex AutoSuggest provider as you suggested
    - add them to your termbase as you work (probably more efficient as no editing is required to add them to your list)
    - add them to your TM variable list and then you might get advantages of pretranslation with the correct names too

    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

Reply
  • Hi ,

    There is no way for anything to just recognise brands/products/companies without there being a list somewhere for reference. Regex is a workaround for this but carries with it the likelihood of false positives as you work. I think your options are probably these:

    - use the variable list in the Rehex AutoSuggest provider as you suggested
    - add them to your termbase as you work (probably more efficient as no editing is required to add them to your list)
    - add them to your TM variable list and then you might get advantages of pretranslation with the correct names too

    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