本文介绍了帮助检查文件中的字符串并根据它返回值C ++的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要帮助检查存储在我的计算机上的文本文件中的字符串..伪示例

I am needing help checking for a string from a text file that is stored on my computer.. pseudo example

if String = x
{
Sleep(100)
}
else
{
exit(0)
}



im只是试图检查文本文件中的一行文本然后返回一个基于该行的值..例如,如果字符串是继续然后我希望它继续退出(0)



我尝试了什么:



注意到这里真的因为我没有太多的知识。


im just trying to check the text file for a line of text then return a value based on that line.. like for example if the string is "continue" then I would like it to continue else exit(0)

What I have tried:

Noting really because I don't have much knowledge here.

推荐答案


这篇关于帮助检查文件中的字符串并根据它返回值C ++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 02:35