UnicodeSet.FromAll Method

Definition

Overloads

FromAll(String)

Makes a set from each of the characters in the string.

FromAll(ICharSequence)

Makes a set from each of the characters in the string.

FromAll(String)

Makes a set from each of the characters in the string.

public static Android.Icu.Text.UnicodeSet? FromAll (string? s);
static member FromAll : string -> Android.Icu.Text.UnicodeSet

Parameters

s
String

the source string

Returns

a newly created set containing the given characters

Remarks

Makes a set from each of the characters in the string. Thus "ch" => {"c", "h"}

Java documentation for android.icu.text.UnicodeSet.fromAll(java.lang.CharSequence).

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

FromAll(ICharSequence)

Makes a set from each of the characters in the string.

[Android.Runtime.Register("fromAll", "(Ljava/lang/CharSequence;)Landroid/icu/text/UnicodeSet;", "", ApiSince=24)]
public static Android.Icu.Text.UnicodeSet? FromAll (Java.Lang.ICharSequence? s);
[<Android.Runtime.Register("fromAll", "(Ljava/lang/CharSequence;)Landroid/icu/text/UnicodeSet;", "", ApiSince=24)>]
static member FromAll : Java.Lang.ICharSequence -> Android.Icu.Text.UnicodeSet

Parameters

s
ICharSequence

the source string

Returns

a newly created set containing the given characters

Attributes

Remarks

Makes a set from each of the characters in the string. Thus "ch" =&gt; {"c", "h"}

Java documentation for android.icu.text.UnicodeSet.fromAll(java.lang.CharSequence).

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