isi-string
v1.0.21
Published
string helpers to make the life easier
Downloads
6
Readme
string helpers for node.js
Methods
trim()
alias : trimChar trim(value, charToTrim)
Removes a character or string from the left and right side of a string
var isiString = require( 'isi-string' );
isiString.trim("__unformated string__", '_' );
// -> unformated string
isiString.trim(",unformated string,", ',' );
// -> unformated string
split():
split(value, charToSplit)
Splits an array and removes empty entries
var isiString = require( 'isi-string' );
isiString.split("Hello World", ' ' );
// -> ['Hello', 'World']
isiString.split("Hello,World,,,", ',' );
// -> ['Hello', 'World']
removeFromRight():
removeFromRight(value, amountToRemove)
removes characters from the right
var isiString = require( 'isi-string' );
isiString.removeFromRight("Hello World", 3 );
// -> Hello Wo
Version History:
1.0.19
- added capitalizeFirstLetter function
1.0.17
- added urlJoin method
1.0.6
- added function to remove chars from the right: removeFromRight
1.0.6
- little docu improvement
1.0.5
- trim all splitted values