Pascal 中的连接字符串
我目前正在使用 writeln 命令写入文本文件。
有没有办法在 pascal 中使用记录来使用连接字符串?
这是我当前的 pascal 代码:
Procedure SaveTopScores (Var TopScores : TTopScores);
Var
Count : Integer;
CurrentFile : Text;
Begin
Assign(CurrentFile, 'HiScores.txt');
Rewrite(CurrentFile);
For Count := 1 To MaxSize
Do Writeln(CurrentFile, TopScores[Count].Name, ',', TopScores[Count].Score);
Close(CurrentFile);
End;
这是在 VB 中写入文件,有没有办法在 pascal 中进行连接字符串?
I'm currently using a writeln command to write to a text file.
Is there any way to use concatenated string using record in pascal?
This is my pascal code currently:
Procedure SaveTopScores (Var TopScores : TTopScores);
Var
Count : Integer;
CurrentFile : Text;
Begin
Assign(CurrentFile, 'HiScores.txt');
Rewrite(CurrentFile);
For Count := 1 To MaxSize
Do Writeln(CurrentFile, TopScores[Count].Name, ',', TopScores[Count].Score);
Close(CurrentFile);
End;
And this is writing to the file in VB, is there a way to do a concatenated string in pascal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
str1 + str2
。我认为它是原始 Pascal 的扩展,但它应该很常见。Try
str1 + str2
. I think it's an extension on the original Pascal, but it should be quite common.