Compartilhar via


UnicodeSet.RemoveAll Method

Definition

Overloads

RemoveAll(UnicodeSet)

Removes from this set all of its elements that are contained in the specified set.

RemoveAll(ICharSequence)

Remove EACH of the characters in this string.

RemoveAll(IIterable)
RemoveAll(String)

Remove EACH of the characters in this string.

RemoveAll(UnicodeSet)

Removes from this set all of its elements that are contained in the specified set.

[Android.Runtime.Register("removeAll", "(Landroid/icu/text/UnicodeSet;)Landroid/icu/text/UnicodeSet;", "GetRemoveAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)]
public virtual Android.Icu.Text.UnicodeSet? RemoveAll (Android.Icu.Text.UnicodeSet? c);
[<Android.Runtime.Register("removeAll", "(Landroid/icu/text/UnicodeSet;)Landroid/icu/text/UnicodeSet;", "GetRemoveAll_Landroid_icu_text_UnicodeSet_Handler", ApiSince=24)>]
abstract member RemoveAll : Android.Icu.Text.UnicodeSet -> Android.Icu.Text.UnicodeSet
override this.RemoveAll : Android.Icu.Text.UnicodeSet -> Android.Icu.Text.UnicodeSet

Parameters

c
UnicodeSet

set that defines which elements will be removed from this set.

Returns

Attributes

Remarks

Removes from this set all of its elements that are contained in the specified set. This operation effectively modifies this set so that its value is the asymmetric set difference of the two sets.

Java documentation for android.icu.text.UnicodeSet.removeAll(android.icu.text.UnicodeSet).

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

RemoveAll(ICharSequence)

Remove EACH of the characters in this string.

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

Parameters

s
ICharSequence

the source string

Returns

this object, for chaining

Attributes

Remarks

Remove EACH of the characters in this string. Note: "ch" == {"c", "h"} If this set already any particular character, it has no effect on that character.

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

RemoveAll(IIterable)

[Android.Runtime.Register("removeAll", "(Ljava/lang/Iterable;)Landroid/icu/text/UnicodeSet;", "GetRemoveAll_Ljava_lang_Iterable_Handler", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })]
public virtual Android.Icu.Text.UnicodeSet? RemoveAll (Java.Lang.IIterable? collection);
[<Android.Runtime.Register("removeAll", "(Ljava/lang/Iterable;)Landroid/icu/text/UnicodeSet;", "GetRemoveAll_Ljava_lang_Iterable_Handler", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })>]
abstract member RemoveAll : Java.Lang.IIterable -> Android.Icu.Text.UnicodeSet
override this.RemoveAll : Java.Lang.IIterable -> Android.Icu.Text.UnicodeSet

Parameters

collection
IIterable

Returns

Attributes

Remarks

Java documentation for android.icu.text.UnicodeSet.removeAll(java.lang.Iterable<T>).

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

RemoveAll(String)

Remove EACH of the characters in this string.

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

Parameters

s
String

the source string

Returns

this object, for chaining

Remarks

Remove EACH of the characters in this string. Note: "ch" == {"c", "h"} If this set already any particular character, it has no effect on that character.

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