英文:
How to split a string by space and newline in Golang?
问题
我是一个Golang的初学者,我想要按照空格和换行符来分割以EOF指示符结尾的多行文本(因为用户可能会频繁按下"Enter"键)。
有什么想法吗?
英文:
I'm a beginner in Golang and I want to split a multiline text terminated by the EOF indicator, and I want to do it by the space and the presence of new lines ( since the user is gonna press "enter" a lot ).
Any idea of how?
答案1
得分: 4
使用strings.Fields
函数。
words := strings.Fields(someString)
在Go Playground中查看示例。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论