String.ToLowerCase Method

Definition

Overloads

ToLowerCase(Locale)

Converts all of the characters in this String to lower case using the rules of the given Locale.

ToLowerCase()

Converts all of the characters in this String to lower case using the rules of the default locale.

ToLowerCase(Locale)

Converts all of the characters in this String to lower case using the rules of the given Locale.

[Android.Runtime.Register("toLowerCase", "(Ljava/util/Locale;)Ljava/lang/String;", "")]
public string ToLowerCase (Java.Util.Locale locale);
[<Android.Runtime.Register("toLowerCase", "(Ljava/util/Locale;)Ljava/lang/String;", "")>]
member this.ToLowerCase : Java.Util.Locale -> string

Parameters

locale
Locale

use the case transformation rules for this locale

Returns

String

the String, converted to lowercase.

Attributes

Remarks

Java documentation for java.lang.String.toLowerCase(java.util.Locale).

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

ToLowerCase()

Converts all of the characters in this String to lower case using the rules of the default locale.

[Android.Runtime.Register("toLowerCase", "()Ljava/lang/String;", "")]
public string ToLowerCase ();
[<Android.Runtime.Register("toLowerCase", "()Ljava/lang/String;", "")>]
member this.ToLowerCase : unit -> string

Returns

String

the String, converted to lowercase.

Attributes

Remarks

Java documentation for java.lang.String.toLowerCase().

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