Popularity
1.8
Growing
Activity
0.0
Stable
4
1
4
Monthly Downloads: 3
Programming language: Elixir
License: MIT License
Tags:
Text And Numbers
ex_brace_expansion alternatives and similar packages
Based on the "Text and Numbers" category.
Alternatively, view ex_brace_expansion alternatives based on common mentions on social networks and blogs.
-
money
Working with Money safer, easier, and fun, interpretation of the Fowler's Money pattern. -
Ex_Money
Money arithmetic, conversion, serialisation with Ecto and exchange rate service integration. -
hashids
Hashids lets you obfuscate numerical identifiers via reversible mapping. -
number
Number is a pretentiously-named Elixir library which provides functions to convert numbers into a variety of different formats. -
slugger
Slugger can generate slugs from given strings that can be used in URLs or file names. -
nanoid
Elixir port of NanoID, a secure and URL-friendly unique ID generator. -
stemmer
An English (Porter2) stemming implementation in Elixir. -
ua_inspector
User agent parser library like piwik/device-detector. -
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). -
veritaserum
Sentiment analysis based on afinn-165, emojis and some enhancements. -
monetized
A lightweight solution for handling and storing money. -
brcpfcnpj
Number format and Validate, to the documents brazilians (CPF/CNPJ). -
sentient
Simple sentiment analysis based on the AFINN-111 wordlist. -
inet_cidr
Classless Inter-Domain Routing (CIDR) for Elixir that is compatible with :inet and supports both IPv4 and IPv6. -
haikunator
Generate Heroku-like memorable random names to use in your apps or anywhere else. -
Ex_Cldr_Numbers
CLDR-based Number and Currency Localization and Formatting -
mbcs
Wrapper for erlang-mbcs. This module provides functions for character encoding conversion. -
expr
An Elixir library for parsing and evaluating mathematical expressions. -
unit_fun
Attempt to add units to numbers in elixir to give some added type saftey when dealing with numeric quantities. -
mt940
MT940 (standard structured SWIFT Customer Statement message) parser for Elixir. -
custom_base
Allow you to make custom base conversion in Elixir. -
Ex_Cldr_Units
SI Unit formatting, localisation, arithmetic and conversion based on the CLDR data -
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 - Leading-edge performance monitoring starting at $39/month
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 ex_brace_expansion or a related project?
README
ExBraceExpansion
Brace expansion, as known from sh/bash, in Elixir. This is a port of brace-expasion javascript project.
Examples
iex> import ExBraceExpansion
nil
iex> expand("file-{a,b,c}.jpg")
["file-a.jpg", "file-b.jpg", "file-c.jpg"]
iex> expand("-v{,,}")
["-v", "-v", "-v"]
iex> expand("file{0..2}.jpg")
["file0.jpg", "file1.jpg", "file2.jpg"]
iex> expand("file-{a..c}.jpg")
["file-a.jpg", "file-b.jpg", "file-c.jpg"]
iex> expand("file{2..0}.jpg")
["file2.jpg", "file1.jpg", "file0.jpg"]
iex> expand("file{0..4..2}.jpg")
["file0.jpg", "file2.jpg", "file4.jpg"]
iex> expand("file-{a..e..2}.jpg")
["file-a.jpg", "file-c.jpg", "file-e.jpg"]
iex> expand("file{00..10..5}.jpg")
["file00.jpg", "file05.jpg", "file10.jpg"]
iex> expand("{{A..C},{a..c}}")
["A", "B", "C", "a", "b", "c"]
iex> expand("ppp{,config,oe{,conf}}")
["ppp", "pppconfig", "pppoe", "pppoeconf"]