Quote Originally Posted by osiris4isis View Post
Answer
Spoiler: .

-= Hidden Content =-
Thanks for the quick reply. I try to understand the string pattern.
My config_transform_tables.lua has both "drive" and "doctor" (same with "saint" and "street").

{2,L"(?i)^S\\.?T\\.? ",L"Saint "},
{2,L"(?i)\\sST\\.?\\b",L" Street"},
-- Drive, doctor
-- Elejen: doctor
{2,L"(?i)^DR\\.?\\b", L"Doctor"},

and this is the "drive" string

{1,L"dr",L"Drive"},
{1,L"drv",L"Drive"},
{1,L"drs",L"Drives"},
{1,L"driv",L"Drive"},

Where should I remove the rule for "doctor" and "saint" ?

Thanks