I have the string "V\355ctor"
(I think that's Víctor
).
Is there a way to convert it to ASCII where í
would be replaced by an ASCII i
?
I already have tried Iconv without success.
(I'm only getting Iconv::IllegalSequence: "\355ctor"
)
Further, are there differences between Ruby 1.8.7 and Ruby 2.0?
EDIT:
Iconv.iconv('UTF-8//IGNORE', 'UTF-8', "V\355ctor")
this seems to work but the result is Vctor
not Victor