Pascal 中的连接字符串

发布于 2024-11-09 03:59:20 字数 560 浏览 0 评论 0原文

我目前正在使用 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 中进行连接字符串?

VB

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?

VB

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乄_柒ぐ汐 2024-11-16 03:59:20

尝试str1 + str2。我认为它是原始 Pascal 的扩展,但它应该很常见。

Try str1 + str2. I think it's an extension on the original Pascal, but it should be quite common.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文