如何使用“输入”在C中分离输入标记?

发布于 2024-10-14 09:36:42 字数 107 浏览 1 评论 0原文

用户输入示例:

abcd enter efgh enter

我想提取按 enter 键分隔的字符串。

Example user input:

abcd enter efgh enter

I want to extract the strings separated by presses of the enter key.

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

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

发布评论

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

评论(3

林空鹿饮溪 2024-10-21 09:36:42

您使用什么函数来读取 0 ? (我猜它是0)。如果是 read(),通常会逐字节读取,因此当用户按 Enter 时,检查该字节是否等于 '\n' (简单引号!)。

What function are you using for read on 0 ? (I guess it's on 0). If it's read(), you normally read byte by byte, so when the user press enter, check if the byte is equal to '\n' (simple quote !).

吃素的狼 2024-10-21 09:36:42

使用 getline安全,强烈建议代替 {f}gets

或使用 strtok 并以 '\n' 作为分隔符

http://www.gnu.org/s/libc/manual/html_node/Line-输入.html

Use getline it's safe, strongly recommended instead of {f}gets

Or use strtok with '\n' as a delimiter

http://www.gnu.org/s/libc/manual/html_node/Line-Input.html

日暮斜阳 2024-10-21 09:36:42

您可以使用 fgetsscanf 读取整行

You could just read whole lines using fgets or scanf

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