Assembly x86: splitting string based on delimiter
问题 Goal: Take string 'One Two Three' which is stored in EDI and call strtok. strtok should split the string so that ESI points to the rest of the string after some delimiter and the first part of the string before the delimiter is stored in a register. After Call strtok with the delimiter of ' ' the result should be ESI = 'Two Three' and some other register = 'One' Using the code below i can find the index of the first instance of a space ' ' in string stored at EDI. index at the end is stored