I am developing a small program in Scheme but I got stuck. Is there anything similar to Java's indexOf() that I could use in Scheme?
|
|
There may be, but typically professors want you to write your own. Here is C style psuedo code since I don't want to remember the syntax.
Note that calling it requires passing in 0 for i (You could write a wrapper if you like), and that this is 1 based indexing, change the return to be i if you want 0 based indexing |
|||
|
|
|
Assuming you're trying to search in strings (and that it's not an assignment intended to help you grok recursion) then you might try the functions here: |
|||
|
|
|
It's not clear from your question what Scheme implementation you're using. If it's PLT Scheme, you're probably looking for something like "regexp-match-positions". (car (car (regexp-match-positions (regexp-quote "zip") "zapzipdingzip"))) => 3 |
|||
|
|
|
For instance in PLT-Scheme, the way to go is to convert the string to a list using string->list and then operating on the list with one of the many available methods. Convert the list back to a string when done. |
|||
|
|
|
Searching list (pretty safe):
|
|||
|
|