如何使用 Free Pascal 交换字符串变量中的某些值并用新值写回?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
StringReplace
You can use
StringReplace