如何使用“输入”在C中分离输入标记?
用户输入示例:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您使用什么函数来读取 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 !).
使用
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}getsOr use
strtok
with '\n' as a delimiterhttp://www.gnu.org/s/libc/manual/html_node/Line-Input.html
您可以使用
fgets
或scanf
读取整行You could just read whole lines using
fgets
orscanf