作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从我的文本文件中读入了以下行:"1200, 1200"
我想拆分 ", "
上的字符串这样我就可以访问原始数字。我怎么能在 Julia 做到这一点?
最佳答案
Julia 有一个简单的 split
接受两个参数的函数。第一个是您要拆分的字符串,第二个是分隔符(您要拆分的内容)。传递给 split 函数的两个参数都应该是字符串。
在这个例子中:
data = readlines("numbers.txt") # Returns a one dimensional array of strings.
xmin, ymin = split(data[1], ", ") # data[1] indexs into that 1-D array to get the string
split
函数将两个数字分成“xmin”和“ymin”。在此示例中,代码运行后,“xmin”将等于 1200,“ymin”将等于 1400。
split
function in the Julia docs.
关于julia - 如何在 Julia 中拆分字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60779787/
我是一名优秀的程序员,十分优秀!