Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.