循环遍历字符串的字符
Version >= 2005 年
以下迭代字符串 s
的字符。它类似于循环遍历数组或集合的元素,只要循环控制变量的类型(在此示例中为 c
)与正在迭代的值的元素类型匹配。
program ForLoopOnString;
{$APPTYPE CONSOLE}
var
s : string;
c : Char;
begin
s := 'Example';
for c in s do
WriteLn(c);
end.
输出:
E
x
a
m
p
l
e