Hello i am trying to do a incFirst function in ML. The function does the following: incFirst "bad" = "cad" incFirst "shin" = "thin". This is what i try to do fun incFirst s = chr(ord s + 1) ^ substring(s, 1, size s -1);
I get the following error: Can't unify string (In Basis) with char (In Basis)
(Different type constructors)
Found near chr (ord s + 1) ^ substring (s, 1, ... - ...)
Exception- Fail "Static Errors" raised
Any idea how i can concatenate a char with a string if the "^" operator is not working?
Can't concatenate a char with a string ML
1.5k Views Asked by Sebi Danila At
1
The operator is working, it's just that you can only concatenate strings, and that
ord
operates on characters, not on strings.(A character is not the same as a one-character string.)
You need to extract the first character and then convert the result to a string
or you could take a detour through a list