StanislavPrusac opened a new issue #618: URL: https://github.com/apache/lucenenet/issues/618
I think one character in class ASCIIFoldingFilter is missing Character: Ʀ Nº: 422 UTF-16: 01A6 Source code that might need to be added to method FoldToASCII(char[] input, int inputPos, char[] output, int outputPos, int length): ``` case '\u01A6': // Ʀ [LATIN LETTER YR] output[outputPos++] = 'R'; ``` Links about this character: [https://codepoints.net/U+01A6](https://codepoints.net/U+01A6) [https://en.wikipedia.org/wiki/%C6%A6](https://en.wikipedia.org/wiki/%C6%A6) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
