任何字母數(shù)字字符序列,例如america
、emp1234
等,都是字符串的示例。計算字符數(shù)是所有字符串過程中最基本的。問題stringlength "abc12ef
的答案由以下過程給出:
to stringlength :s
make "inputstring :s
make "count 0
while [not emptyp :s] [
make "count :count + 1
print first :s
make "s butfirst :s
]
print (sentence :inputstring "has :count "letters)
end
在上面的過程中s
是包含輸入字符串的變量。變量inputstring
包含輸入字符串的副本。變量計數(shù)初始化為 0。在 while 循環(huán)中,條件檢查字符串是否為空。在每個循環(huán)計數(shù)中,一個變量增加 1 以保持長度計數(shù)。語句print first :s
僅打印存儲在s
中的字符串的第一個字符。
語句make "s butfirst :s
,檢索不包括第一個字符的子字符串。退出while循環(huán)后,我們打印了輸入字符串的字符數(shù)或長度。以下是代碼的執(zhí)行和輸出.
更多建議: