Normalizer2.NormalizeSecondAndAppend 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
NormalizeSecondAndAppend(StringBuilder, ICharSequence) |
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string. |
NormalizeSecondAndAppend(StringBuilder, String) |
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string. |
NormalizeSecondAndAppend(StringBuilder, ICharSequence)
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string.
[Android.Runtime.Register("normalizeSecondAndAppend", "(Ljava/lang/StringBuilder;Ljava/lang/CharSequence;)Ljava/lang/StringBuilder;", "GetNormalizeSecondAndAppend_Ljava_lang_StringBuilder_Ljava_lang_CharSequence_Handler", ApiSince=24)]
public abstract Java.Lang.StringBuilder? NormalizeSecondAndAppend (Java.Lang.StringBuilder? first, Java.Lang.ICharSequence? second);
[<Android.Runtime.Register("normalizeSecondAndAppend", "(Ljava/lang/StringBuilder;Ljava/lang/CharSequence;)Ljava/lang/StringBuilder;", "GetNormalizeSecondAndAppend_Ljava_lang_StringBuilder_Ljava_lang_CharSequence_Handler", ApiSince=24)>]
abstract member NormalizeSecondAndAppend : Java.Lang.StringBuilder * Java.Lang.ICharSequence -> Java.Lang.StringBuilder
Parameters
- first
- StringBuilder
string, should be normalized
- second
- ICharSequence
string, will be normalized
Returns
first
- Attributes
Remarks
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string. The result is normalized if the first string was normalized. The first and second strings must be different objects.
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
NormalizeSecondAndAppend(StringBuilder, String)
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string.
public Java.Lang.StringBuilder? NormalizeSecondAndAppend (Java.Lang.StringBuilder? first, string? second);
member this.NormalizeSecondAndAppend : Java.Lang.StringBuilder * string -> Java.Lang.StringBuilder
Parameters
- first
- StringBuilder
string, should be normalized
- second
- String
string, will be normalized
Returns
first
Remarks
Appends the normalized form of the second string to the first string (merging them at the boundary) and returns the first string. The result is normalized if the first string was normalized. The first and second strings must be different objects.
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.