UnicodeSet.ContainsSome 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
ContainsSome(UnicodeSet) |
Returns true if this set contains one or more of the characters and strings of the given set. |
ContainsSome(ICharSequence) |
Returns true if this set contains one or more of the characters of the given string. |
ContainsSome(IIterable) | |
ContainsSome(String) |
Returns true if this set contains one or more of the characters of the given string. |
ContainsSome(Int32, Int32) |
Returns true if this set contains one or more of the characters in the given range. |
ContainsSome(UnicodeSet)
Returns true if this set contains one or more of the characters and strings of the given set.
[Android.Runtime.Register("containsSome", "(Landroid/icu/text/UnicodeSet;)Z", "", ApiSince=24)]
public bool ContainsSome (Android.Icu.Text.UnicodeSet? s);
[<Android.Runtime.Register("containsSome", "(Landroid/icu/text/UnicodeSet;)Z", "", ApiSince=24)>]
member this.ContainsSome : Android.Icu.Text.UnicodeSet -> bool
Parameters
set to be checked for containment
Returns
true if the condition is met
- Attributes
Remarks
Returns true if this set contains one or more of the characters and strings of the given set.
Java documentation for android.icu.text.UnicodeSet.containsSome(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
ContainsSome(ICharSequence)
Returns true if this set contains one or more of the characters of the given string.
[Android.Runtime.Register("containsSome", "(Ljava/lang/CharSequence;)Z", "", ApiSince=24)]
public bool ContainsSome (Java.Lang.ICharSequence? s);
[<Android.Runtime.Register("containsSome", "(Ljava/lang/CharSequence;)Z", "", ApiSince=24)>]
member this.ContainsSome : Java.Lang.ICharSequence -> bool
Parameters
string containing characters to be checked for containment
Returns
true if the condition is met
- Attributes
Remarks
Returns true if this set contains one or more of the characters of the given string.
Java documentation for android.icu.text.UnicodeSet.containsSome(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
ContainsSome(IIterable)
[Android.Runtime.Register("containsSome", "(Ljava/lang/Iterable;)Z", "", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })]
public bool ContainsSome (Java.Lang.IIterable? collection);
[<Android.Runtime.Register("containsSome", "(Ljava/lang/Iterable;)Z", "", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T extends java.lang.CharSequence" })>]
member this.ContainsSome : Java.Lang.IIterable -> bool
Parameters
- collection
- IIterable
Returns
- Attributes
Remarks
Java documentation for android.icu.text.UnicodeSet.containsSome(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
ContainsSome(String)
Returns true if this set contains one or more of the characters of the given string.
public bool ContainsSome (string? s);
member this.ContainsSome : string -> bool
Parameters
- s
- String
string containing characters to be checked for containment
Returns
true if the condition is met
Remarks
Returns true if this set contains one or more of the characters of the given string.
Java documentation for android.icu.text.UnicodeSet.containsSome(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
ContainsSome(Int32, Int32)
Returns true if this set contains one or more of the characters in the given range.
[Android.Runtime.Register("containsSome", "(II)Z", "", ApiSince=24)]
public bool ContainsSome (int start, int end);
[<Android.Runtime.Register("containsSome", "(II)Z", "", ApiSince=24)>]
member this.ContainsSome : int * int -> bool
Parameters
- start
- Int32
first character, inclusive, of the range
- end
- Int32
last character, inclusive, of the range
Returns
true if the condition is met
- Attributes
Remarks
Returns true if this set contains one or more of the characters in the given range.
Java documentation for android.icu.text.UnicodeSet.containsSome(int, int)
.
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.