UnicodeSet.From Method

Definition

Overloads

From(ICharSequence)

Makes a set from a multicharacter string.

From(String)

Makes a set from a multicharacter string.

From(ICharSequence)

Makes a set from a multicharacter string.

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

Parameters

s
ICharSequence

the source string

Returns

a newly created set containing the given string

Attributes

Remarks

Makes a set from a multicharacter string. Thus "ch" =&gt; {"ch"}

Java documentation for android.icu.text.UnicodeSet.from(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

From(String)

Makes a set from a multicharacter string.

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

Parameters

s
String

the source string

Returns

a newly created set containing the given string

Remarks

Makes a set from a multicharacter string. Thus "ch" =&gt; {"ch"}

Java documentation for android.icu.text.UnicodeSet.from(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