枫木和子弦
也许这是一个错误的网站,但希望有人知道...
如何在 Maple 中断开字符串并将其存储在子字符串列表中?
IE 我的字符串是:“我喜欢周末”
,我想将它分成大小为 2 的子字符串... 所以我看起来像这个
substrs;
子字符串= [[i][lo][ve][t][he][w][ee][ke][nd][s]]
Maybe this is the wrong website to ask, but hopefully somebody knows...
How do I break a string in Maple and store it in a list of substrings?
i.e.
my string is : "i love the weekends"
and I want to break it into substrings of size 2...
so i would look like this
substrs;
substrs = [[i ][lo][ve][ t][he][ w][ee][ke][nd][s ]]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
StringTools
包中的LengthSplit
似乎可以满足您的要求:LengthSplit
in theStringTools
package seems to do what you want:简单,只需在其周围放置一个列表构造函数即可:
Simple, just put a list constructor around it: