StringLen

문자열에 들은 문자의 갯수를 열람합니다.

비추천: 이 명령어는 새 스크립트에 사용을 추천하지 않습니다. 대신 StrLen 기능을 사용하십시오.

StringLen, OutputVar, InputVar

매개변수

OutputVar
The name of the output variable in which to store the length.
InputVar
The name of the input variable whose contents will be measured. 이름을 퍼센트 사인으로 둘러 싸지 마십시오. 변수의 내용을 이름으로 사용하고 싶다면 예외입니다.

논평

If InputVar is a variable to which ClipboardAll was previously assigned, StringLen will retrieve its total size.

StrLen(), IfInString, StringGetPos, StringMid, StringTrimLeft, StringTrimRight, StringLeft, StringRight, StringLower, StringUpper, StringReplace

예제

Retrieves and reports the count of how many characters are in a string.

StrValue := "The quick brown fox jumps over the lazy dog"
StringLen, Length, StrValue
MsgBox, The length of the string is %Length%.