"Splitting" string in assembly language
I have new problem. 开发者_如何学PythonI'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?
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.
精彩评论