Normalizer.Normalize Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Normalize(ICharSequence, Normalizer+Form) |
Normalize a sequence of char values. |
Normalize(String, Normalizer+Form) |
Normalize a sequence of char values. |
Normalize(ICharSequence, Normalizer+Form)
Normalize a sequence of char values.
[Android.Runtime.Register("normalize", "(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Ljava/lang/String;", "")]
public static string? Normalize (Java.Lang.ICharSequence? src, Java.Text.Normalizer.Form? form);
[<Android.Runtime.Register("normalize", "(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Ljava/lang/String;", "")>]
static member Normalize : Java.Lang.ICharSequence * Java.Text.Normalizer.Form -> string
Parameters
- src
- ICharSequence
The sequence of char values to normalize.
- form
- Normalizer.Form
The normalization form; one of
java.text.Normalizer.Form#NFC
,
java.text.Normalizer.Form#NFD
,
java.text.Normalizer.Form#NFKC
,
java.text.Normalizer.Form#NFKD
Returns
The normalized String
- Attributes
Remarks
Java documentation for java.text.Normalizer.normalize(java.lang.CharSequence, java.text.Form)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Normalize(String, Normalizer+Form)
Normalize a sequence of char values.
public static string? Normalize (string? src, Java.Text.Normalizer.Form? form);
static member Normalize : string * Java.Text.Normalizer.Form -> string
Parameters
- src
- String
The sequence of char values to normalize.
- form
- Normalizer.Form
The normalization form; one of
java.text.Normalizer.Form#NFC
,
java.text.Normalizer.Form#NFD
,
java.text.Normalizer.Form#NFKC
,
java.text.Normalizer.Form#NFKD
Returns
The normalized String
Remarks
Java documentation for java.text.Normalizer.normalize(java.lang.CharSequence, java.text.Form)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.