Closed psoszynski closed 4 years ago
Adding ".Replace(",", String.Empty)" to:
var matchValue = exampleValues[0] .Replace(" ", string.Empty) .Replace(":", string.Empty) .Replace("\\", string.Empty) .Replace("(", string.Empty) .Replace(")", string.Empty) .Replace(".", "_") .Replace("!", string.Empty) .Replace("&", string.Empty) .ToUpperInvariant() .Replace("Ä", "A") .Replace("Ö", "O") .Replace("Ü", "U") .Replace("ß", "B") .Replace("æ", "ae") .Replace('ø', 'o') .Replace('å', 'a') .Replace("Æ", "AE") .Replace('Ø', 'O') .Replace('Å', 'A');
fixes the problem. Shall I create pull request?
This is resolved by my PR as well, which is already opened for review: #542.
And I will review the PR today.
Adding ".Replace(",", String.Empty)" to:
fixes the problem. Shall I create pull request?