Package Exports
- string-operations
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (string-operations) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
stringOperations
This library will do operation on string like padLeft, padRight, replaceAll and truncate.
Installation
$ npm install string-operations
API
var stringOps = require('string-operations');
padRight and padLeft
options one or more of the following:
value data which you want to pad- default value will be empty string ''
padChar pad character which you want to append the value default value will be white space ' '
maxLength Total length of data after padding
var options = {
value: 'abcde',
padChar: ' ',
maxLength: '7'
};
var result = stringOps.padRight(options);
console.log(result);
// prints 'abcde '
var options = {
value: 'abcde',
padChar: '0',
maxLength: '7'
};
var result = stringOps.padLeft(options);
console.log(result);
// prints '00abcde'
replaceAll
obj:
value: input data where you want to replace character
repTo: character you want to replace
repWith: Character with whom you want to replace
var obj = {
value: 'abcdefga',
repTo: 'a',
repWith: 'A'
};
var result = stringOperation.replaceAll(obj);
console.log(result);
// prints AbcdefgA
truncate
value: input data where you want to truncate
maxLength: maxLength you want
var result = stringOperation.truncate('abcd', 3);
console.log(result);
// prints abc