how to get a list of valid Iconv encodings in Ruby 1.9.1 under windows 7?
|
feedback
|
|
The list is not maintained by Ruby so you can't do it from Ruby. Ruby simply uses whatever iconv you've installed on the system. If you have the full iconv installation, you can get the list from iconv like,
If you just have the library (iconv.dll), there is no way to get the list. Most implementation is based on GNU iconv and the list is very static. You can just go to any Linux machine and type "iconv -l" to get the list. | |||
feedback
|
|
Maybe this will help:
It returns a list of loaded encodings, and a hash of encoding's aliases:
| ||||
|
feedback
|