2.0.0 • Published 3 years ago

trim-php v2.0.0

Weekly downloads
116
License
MIT
Repository
github
Last release
3 years ago

trim-php

NPM version Downloads Build Status AppVeyor Build Status

Strip whitespace (or other characters) of a string.

Install

Via npm

npm install trim-php

Via Yarn

yarn add trim-php

Usage

Import Package in Node.js.

const trimPhp = require('trim-php').default;

Import Package in React.

import trimPhp from 'trim-php';

Examples

Strip whitespace (or other characters) from the beginning of a string

In V1

const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With lTrim: ', trim.lTrim(str));

In V2

const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With lTrim: ', new trimPhp().lTrim(str));

Strip whitespace (or other characters) from the end of a string

In V1

const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With rTrim: ', trim.rTrim(str));

In V2

const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With rTrim: ', new trimPhp().rTrim(str));

Strip whitespace (or other characters) from the beginning and end of a string

In V1

const trim = require('trim-php');
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', trim.trimPhp(str));

In V2

const trimPhp = require('trim-php').default;
const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trim: ', new trimPhp().trim(str));

Strip whitespace (or other characters) from the beginning and end of a string in React

In V1

import trim from 'trim-php';

var str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', trim.trimPhp(str));

In V2

import trimPhp from 'trim-php';

const str = '\n    Hello World!     \n';

console.log('Without Trim: ', str);
console.log('With trimPhp: ', new trimPhp().trim(str));

Parameters

AttributesTypeRequiredDescription
strStringYesSpecifies the string to check.
charListStringNoSpecifies which characters to remove from the string.

Return

Returns the modified string.

Tested

This package is tested with the Node.js and React Application.