“分裂”汇编语言中的字符串

发布于 2024-11-26 09:39:15 字数 92 浏览 1 评论 0原文

我有新问题。我正在使用汇编语言处理字符串,我想问:汇编语言中是否有用于“拆分”字符串的函数,例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反目相谮 2024-12-03 09:39:15

纯组装?不,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文