如何使用 Free Pascal 交换字符串变量中的某些值并用新值写回?

发布于 2024-11-09 19:34:59 字数 249 浏览 3 评论 0原文

使用 ReadLn(InputFile, strVar) 从文本文件中读取一行后,我需要读取 strVar 的每个字符,如果它包含字母“E”(例如),我想输出(写入新文件,事实上)原始变量,但“E”被交换/替换为数字“3”。

因此,如果从文件中读取“Example”,我希望将“3xample”写入新文件。

如何在 Free Pascal 中编写交换代码(我可以写入文件位)?其他语言好像有交换功能什么的。

谢谢特德

Having read a line from a text file using ReadLn(InputFile, strVar), I need to read each character of strVar, and if it contains the letter 'E' (for example), I want to output (write to a new file, in fact) the original variable but with the 'E' being swapped\replaced with the numeric digit '3'.

So, if 'Example' is read from the file, I want '3xample' to be written to a new file.

How do I code the swapping in Free Pascal (I can do the writing to the file bit)? Other languages seem to have a swap function or something.

Thanks

Ted

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

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

发布评论

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

评论(1

吻风 2024-11-16 19:34:59

您可以使用 StringReplace

strVar := StringReplace(strVar, 'E', '3', [rfReplaceAll]);

You can use StringReplace

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