Interface ISanitizer
Sanitize strings to remove soft hyphens and other special characters.
Namespace: Dalamud.Game.Text.Sanitizer
Assembly: Dalamud.dll
Syntax
public interface ISanitizer
Methods
| Improve this Doc View SourceSanitize(IEnumerable<String>)
Creates a list of sanitized strings using current clientLanguage.
Declaration
IEnumerable<string> Sanitize(IEnumerable<string> unsanitizedStrings)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IEnumerable<System.String> | unsanitizedStrings | List of unsanitized string to sanitize. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<System.String> | A list of sanitized strings. |
Sanitize(IEnumerable<String>, ClientLanguage)
Creates a list of sanitized strings using requested clientLanguage.
Declaration
IEnumerable<string> Sanitize(IEnumerable<string> unsanitizedStrings, ClientLanguage clientLanguage)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IEnumerable<System.String> | unsanitizedStrings | List of unsanitized string to sanitize. |
| ClientLanguage | clientLanguage | Target language for sanitized strings. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IEnumerable<System.String> | A list of sanitized strings. |
Sanitize(String)
Creates a sanitized string using current clientLanguage.
Declaration
string Sanitize(string unsanitizedString)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | unsanitizedString | An unsanitized string to sanitize. |
Returns
| Type | Description |
|---|---|
| System.String | A sanitized string. |
Sanitize(String, ClientLanguage)
Creates a sanitized string using request clientLanguage.
Declaration
string Sanitize(string unsanitizedString, ClientLanguage clientLanguage)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | unsanitizedString | An unsanitized string to sanitize. |
| ClientLanguage | clientLanguage | Target language for sanitized strings. |
Returns
| Type | Description |
|---|---|
| System.String | A sanitized string. |