“分裂”汇编语言中的字符串
我有新问题。我正在使用汇编语言处理字符串,我想问:汇编语言中是否有用于“拆分”字符串的函数,例如 JavaScript、.NET 中的 Split 和 PHP 中的爆炸?
I have new problem. I'm working with strings in assembly language and I want to ask: Is there any function in assembly language for "splitting" strings like Split in JavaScript, .NET and explode in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
纯组装?不,CPU 上没有字符串这样的东西,只有字节。您必须使用像 c 库这样的库,链接它并使用常用的 c 函数,或者自己在汇编中对其进行编码。
Pure assembly? No. There is no such thing as a string on a cpu, just bytes. You'll have to either use a library like the c library, link it and use the usual c functions, or code it yourself in assembly.