[search] Simplify apostrophe.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2023-09-09 11:19:54 -03:00
parent 3d2b9982d4
commit 2d0a756170
2 changed files with 9 additions and 0 deletions

View file

@ -282,4 +282,9 @@ UNIT_TEST(NormalizeAndSimplifyString_Numero)
TEST_EQUAL(NormalizeAndSimplifyStringUtf8("Area #One"), "area #one", ());
}
UNIT_TEST(NormalizeAndSimplifyString_Apostrophe)
{
TEST_EQUAL(NormalizeAndSimplifyStringUtf8("Pops"), "pop's", ());
}
} // namespace search_string_utils_test

View file

@ -130,6 +130,10 @@ UniString NormalizeAndSimplifyString(std::string_view s)
c = 'a';
uniString.insert(uniString.begin() + (i++) + 1, 'e');
break;
case 0x2018: //
case 0x2019: //
c = '\'';
break;
case 0x2116: // №
c = '#';
break;