how would I find a particular character in a user inputed string that has a known length in MIPS? I've looked on SO as well as many other websites however, none can seem to fundamentally explain how to manipulate user inputed data.
Here's what I have so far:
A_string:
.space 11
buffer:
asciiz"Is this inputed string 10 chars long?"
main:
la $a0, buffer
li $v0, 4
syscall
li $v0, 8
la $a0, A_string
li $a1, 11
syscall