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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.