티스토리 뷰

Delphi

function LowerCase(const S: string): string;

function LowerCase(const S: string; LocaleOptions: TLocaleOptions): string;

C++

extern PACKAGE System::UnicodeString __fastcall LowerCase(const System::UnicodeString S)/* overload */;

Properties

Type

Visibility

Source

Unit

Parent

function

public

System.SysUtils.pas

System.SysUtils.hpp

System.SysUtils

System.SysUtils

Description

Converts an ASCII string to lowercase.

LowerCase returns a string with the same text as the string passed in S, but with all letters converted to lowercase.

The conversion affects only 7-bit ASCII characters between 'A' and 'Z'.

To convert 8-bit international characters, use AnsiLowerCase.

 

ASCII 문자열을 소문자로 변환합니다.

LowerCaseS에서 전달된 문자열과 텍스트가 같은 문자열을 반환하지만, 모든 문자는 소문자로 변환됩니다.

변환은 'A' 'Z'사이의 7 비트 ASCII 문자에만 영향을 줍니다.

8 비트 국제 문자를 변환하려면 AnsiLowerCase를 사용하십시오.

 

Example

var

  TmpStr: string;

 

begin

  TmpStr := 'WoW!';

  TmpStr := LowerCase(TmpStr);

 

  // 결과: wow!

  Writeln(TmpStr);

  Readln;

end.

 

letters 영국식   

읽기와 쓰기, 알파벳; 문서; 문학, 학문.

letter 미국·영국 [|letə(r)]   영국식   중요

1. 편지
2.
글자, 문자
3. (
운동복 등에 새겨진, 소속을 나타내는) 마크

affect (affects) 미국·영국 [ə|fekt]   영국식   중요

1. 영향을 미치다
2. (
사람이나 신체 부위에) 발생하다; 병이 나게 하다
3. (
강한 정서적) 충격을 주다, 깊은 슬픔을 유발하다

 

출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.LowerCase

'프로그래밍 언어 > Delphi' 카테고리의 다른 글

[Reference] System.Addr  (0) 2017.03.26
[Reference] System.SysUtils.StrToInt  (0) 2017.03.25
[Reference] System.Rewrite  (0) 2017.03.23
[Reference] System.SysUtils.DecodeDate  (0) 2017.03.22
[Reference] System.Int  (0) 2017.03.21
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함