trim-php

Strip whitespace (or other characters) of a string.

Usage no npm install needed!

<script type="module">
  import trimPhp from 'https://cdn.skypack.dev/trim-php';
</script>

README

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

Attributes Type Required Description
str String Yes Specifies the string to check.
charList String No Specifies which characters to remove from the string.

Return

Returns the modified string.

Tested

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