Hi!

I read a string from console with syscall and store it to my .space buffer.

li 	$v0, 8
	la 	$a0, buffer
	la 	$a1, buffer
	syscall

With my string in the buffer i would like to iterate over it and i guess i need to know how long the string in buffer is?
How do i know how long the string is?

Any help woould be greatly appreciated

Solved it by cheking if the byte i loaded was a null-byte.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.