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 Reply Children
No Data