All Projects → dleitee → Strman

dleitee / Strman

Licence: mit
🏗A Javascript string manipulation library.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Strman

Unis
UNIS: A Common Architecture for String Utilities within the Go Programming Language.
Stars: ✭ 69 (-96.59%)
Mutual labels:  string
Htmlstring
Escape and unescape HTML entities in Swift
Stars: ✭ 119 (-94.11%)
Mutual labels:  string
Dart Basic Utils
A dart package for many helper methods fitting common situations
Stars: ✭ 153 (-92.43%)
Mutual labels:  string
String To Stream
Convert a string into a stream (streams2)
Stars: ✭ 75 (-96.29%)
Mutual labels:  string
Strtk
C++ String Toolkit Library
Stars: ✭ 113 (-94.41%)
Mutual labels:  string
Sty
String styling for your terminal.
Stars: ✭ 129 (-93.62%)
Mutual labels:  string
String Pixel Width
Blazingly fast measure string width in pixels on the server in Javascript (Node.Js)
Stars: ✭ 65 (-96.78%)
Mutual labels:  string
Voca rs
Voca_rs is the ultimate Rust string library inspired by Voca.js, string.py and Inflector, implemented as independent functions and on Foreign Types (String and str).
Stars: ✭ 167 (-91.74%)
Mutual labels:  string
Analysis
A tool helping you to extract useful information from strings.
Stars: ✭ 118 (-94.16%)
Mutual labels:  string
Ssf
📝 Spreadsheet Number Formatter
Stars: ✭ 139 (-93.12%)
Mutual labels:  string
String Extra
Unicode/String support for Twig
Stars: ✭ 92 (-95.45%)
Mutual labels:  string
Strman Java
A Java 8 string manipulation library.
Stars: ✭ 1,362 (-32.61%)
Mutual labels:  string
Bee.js
javaScript常用工具类
Stars: ✭ 130 (-93.57%)
Mutual labels:  string
Dashify
Convert a camelcase or space-separated string to a dash-separated string.
Stars: ✭ 71 (-96.49%)
Mutual labels:  string
String Inflection
underscore -> UPCASE -> CamelCase conversion of names
Stars: ✭ 157 (-92.23%)
Mutual labels:  string
Better Strings
Java String Interpolation Plugin
Stars: ✭ 66 (-96.73%)
Mutual labels:  string
Croc
Swift emoji string parsing library
Stars: ✭ 124 (-93.86%)
Mutual labels:  string
Algo Tree
Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
Stars: ✭ 166 (-91.79%)
Mutual labels:  string
Androidlibrary
Android library to reveal or obfuscate strings and assets at runtime
Stars: ✭ 162 (-91.98%)
Mutual labels:  string
Validatetor
Android library for fast and simple string validation
Stars: ✭ 136 (-93.27%)
Mutual labels:  string

CircleCI Coverage Status Code Climate Greenkeeper badge

A Javascript string manipulation library.

Install

strman v2.0.0 is available on npm/yarn:

npm install strman --save
yarn add strman

Documentation

https://dleitee.github.io/strman/

Usage

With ES6/import

import { slugify } from 'strman'

const  title = "A Javascript string manipulation library.";
slugify(title);
// => "a-javascript-string-manipulation-library"

With require

const slugify = require('strman').slugify;

const title = 'A Javascript string manipulation library.'
slugify(title)
// => "a-javascript-string-manipulation-library"

Credits

Contributing

Want to contribute? Follow these recommendations.

LICENSE

The MIT License (MIT)

Copyright (c) 2015 Daniel Leite de Oliveira

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].