Popularity
3.9
Declining
Activity
0.0
Stable
25
1
6
Monthly Downloads: 6
Programming language: Elixir
License: MIT License
Tags:
Text And Numbers
Latest version: v0.1.3
mbcs alternatives and similar packages
Based on the "Text and Numbers" category.
Alternatively, view mbcs alternatives based on common mentions on social networks and blogs.
-
Ex_Money
Money arithmetic, conversion, serialisation with Ecto and exchange rate service integration. -
number
Number is a pretentiously-named Elixir library which provides functions to convert numbers into a variety of different formats. -
secure_random
Convenience library for random base64 strings modeled after my love for Ruby's SecureRandom. -
chinese_translation
Translate between traditional chinese and simplified chinese based on wikipedia data, and translate chinese words/characters to pinyin (or slug with or without tone). -
inet_cidr
Classless Inter-Domain Routing (CIDR) for Elixir that is compatible with :inet and supports both IPv4 and IPv6. -
unit_fun
Attempt to add units to numbers in elixir to give some added type saftey when dealing with numeric quantities. -
bencode
A Bencode encoder and decoder for Elixir. The decoder will return the checksum value of the info dictionary, if an info dictionary was found in the input.
Scout APM: A developer's best friend. Try free for 14-days
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of mbcs or a related project?
Popular Comparisons
README
elixir-mbcs
Wrapper for erlang-mbcs. This module provides functions for character encoding conversion.
Install
Adding the following to the mix.exs in your project:
defp deps do
[
{:elixir_mbcs, github: "woxtu/elixir-mbcs", tag: "0.1.3"},
]
end
Usage
# Start mbcs server
iex> Mbcs.start
:ok
# Convert UTF-8 to Shift_JIS
iex> Mbcs.encode!("九条カレン", :cp932)
<<139, 227, 143, 240, 131, 74, 131, 140, 131, 147>>
# Convert Shift_JIS to UTF-8, and return as a list
iex> Mbcs.decode!([139, 227, 143, 240, 131, 74, 131, 140, 131, 147], :cp932, return: :list)
[20061, 26465, 12459, 12524, 12531]
Support encodings
- cp037
- cp437
- cp500
- cp737, cp775
- cp850, cp852, cp855, cp857, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875
- cp932, cp936, gbk, cp949, cp950, big5
- cp1026, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258
- cp10000, cp10006, cp10007, cp10029, cp10079, cp10081
- utf8, utf16, utf16le, utf16be, utf32, utf32le, utf32be
Options
- return: list, binary
- error: strict, ignore, replace
- replace:
non_neg_integer
- bom:
true
,false
License
Copyright (c) 2015 woxtu
Licensed under the MIT license.
*Note that all licence references and agreements mentioned in the mbcs README section above
are relevant to that project's source code only.