.
This commit is contained in:
@@ -84,6 +84,11 @@ namespace BS.Shared.Extensions
|
||||
throw new ArgumentException("Not found.", "description");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Ersetzt das große ẞ durch ein kleines, da das große ẞ nicht von latin01 inder Datenbank unterstützt wird.
|
||||
/// </summary>
|
||||
/// <param name="pString">String, der möglicherweise ein großes ẞ enthält.</param>
|
||||
/// <returns>pString, mit ersetzten, großen ẞ, falls vorher vorhanden.</returns>
|
||||
public static string RemoveUppercaseEsszett(this string pString)
|
||||
{
|
||||
return pString?.Replace("ẞ", "ß");
|
||||
|
||||
Reference in New Issue
Block a user