![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
iconv wrapper, used to be ext/iconv
Iconv is a wrapper class for the UNIX 95 iconv()
function family,
which translates string between various encoding systems.
See Open Group's on-line documents for more details.
iconv.h
: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.htmliconv_open()
: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_open.htmliconv()
: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.htmliconv_close()
: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv_close.htmlWhich coding systems are available is platform-dependent.
Add this line to your application's Gemfile:
gem 'iconv'
And then execute:
$ bundle
Or install it yourself as:
$ gem install iconv
converted_text = Iconv.conv('iso-8859-15', 'utf-8', text)
Iconv
and use method Iconv#iconv
.
cd = Iconv.new(to, from)
begin
input.each { |s| output << cd.iconv(s) }
output << cd.iconv(nil) # Don't forget this!
ensure
cd.close
end
Iconv.open
with a block.
Iconv.open(to, from) do |cd|
input.each { |s| output << cd.iconv(s) }
output << cd.iconv(nil)
end
Iconv.iconv(to, from, *input.to_a)
Even if some extensions of implementation dependent are useful,
DON'T USE those extensions in libraries and scripts to widely distribute.
If you want to use those feature, use String#encode
.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Ruby License/2-clause BSDL
FAQs
Unknown package
We found that iconv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.