Strings.LCase 메서드
정의
소문자로 변환된 문자열 또는 문자를 반환합니다.Returns a string or character converted to lowercase.
오버로드
LCase(Char) |
소문자로 변환된 문자열 또는 문자를 반환합니다.Returns a string or character converted to lowercase. |
LCase(String) |
소문자로 변환된 문자열 또는 문자를 반환합니다.Returns a string or character converted to lowercase. |
LCase(Char)
소문자로 변환된 문자열 또는 문자를 반환합니다.Returns a string or character converted to lowercase.
public:
static char LCase(char Value);
public static char LCase (char Value);
static member LCase : char -> char
Public Function LCase (Value As Char) As Char
매개 변수
- Value
- Char
필수 요소.Required. 임의의 유효한 String
또는 Char
식입니다.Any valid String
or Char
expression.
반환
소문자로 변환된 문자열 또는 문자입니다.A string or character converted to lowercase.
예제
이 예에서는 함수를 사용 하 여 LCase
문자열의 소문자 버전을 반환 합니다.This example uses the LCase
function to return a lowercase version of a string.
' String to convert.
Dim upperCase As String = "Hello World 1234"
' Returns "hello world 1234".
Dim lowerCase As String = LCase(upperCase)
설명
대문자만 소문자로 변환 됩니다. 모든 소문자와 글자가 아닌 문자는 변경 되지 않은 상태로 유지 됩니다.Only uppercase letters are converted to lowercase; all lowercase letters and nonletter characters remain unchanged.
이 함수는 대/소문자 변경은 애플리케이션은 사용 되는 로캘에 대 한 적절 한 문자열을 조작 하는 경우 애플리케이션의 culture 정보를 사용 합니다.This function uses the application's culture information when manipulating the string so that the case changes are appropriate for the locale in which the application is being used.
중요
애플리케이션에서 비교 또는 대/소문자 변경 작업의 결과에 따라 보안 결정 다음 작업을 사용 해야 합니다 String.Compare 메서드를 통과 Ordinal 또는 OrdinalIgnoreCase 에 대 한는 comparisonType
인수입니다.If your application makes security decisions based on the result of a comparison or case-change operation, then the operation should use the String.Compare method, and pass Ordinal or OrdinalIgnoreCase for the comparisonType
argument. 자세한 내용은 Culture가 Visual Basic 문자열에 미치는 영향을 참조 하세요.For more information, see How Culture Affects Strings in Visual Basic.
추가 정보
- UCase
- Visual Basic의 문자열Strings in Visual Basic
- Visual Basic의 문자열 소개Introduction to Strings in Visual Basic
적용 대상
LCase(String)
소문자로 변환된 문자열 또는 문자를 반환합니다.Returns a string or character converted to lowercase.
public:
static System::String ^ LCase(System::String ^ Value);
public static string LCase (string Value);
static member LCase : string -> string
Public Function LCase (Value As String) As String
매개 변수
- Value
- String
필수 요소.Required. 임의의 유효한 String
또는 Char
식입니다.Any valid String
or Char
expression.
반환
소문자로 변환된 문자열 또는 문자입니다.A string or character converted to lowercase.
예제
이 예에서는 함수를 사용 하 여 LCase
문자열의 소문자 버전을 반환 합니다.This example uses the LCase
function to return a lowercase version of a string.
' String to convert.
Dim upperCase As String = "Hello World 1234"
' Returns "hello world 1234".
Dim lowerCase As String = LCase(upperCase)
설명
대문자만 소문자로 변환 됩니다. 모든 소문자와 글자가 아닌 문자는 변경 되지 않은 상태로 유지 됩니다.Only uppercase letters are converted to lowercase; all lowercase letters and nonletter characters remain unchanged.
이 함수는 대/소문자 변경은 애플리케이션은 사용 되는 로캘에 대 한 적절 한 문자열을 조작 하는 경우 애플리케이션의 culture 정보를 사용 합니다.This function uses the application's culture information when manipulating the string so that the case changes are appropriate for the locale in which the application is being used.
중요
애플리케이션에서 비교 또는 대/소문자 변경 작업의 결과에 따라 보안 결정 다음 작업을 사용 해야 합니다 String.Compare 메서드를 통과 Ordinal 또는 OrdinalIgnoreCase 에 대 한는 comparisonType
인수입니다.If your application makes security decisions based on the result of a comparison or case-change operation, then the operation should use the String.Compare method, and pass Ordinal or OrdinalIgnoreCase for the comparisonType
argument. 자세한 내용은 Culture가 Visual Basic 문자열에 미치는 영향을 참조 하세요.For more information, see How Culture Affects Strings in Visual Basic.
추가 정보
- UCase
- Visual Basic의 문자열Strings in Visual Basic
- Visual Basic의 문자열 소개Introduction to Strings in Visual Basic