trim-php
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    71
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.0
    71
  • 1.1.0
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i trim-php

Weekly Downloads

71

Version

2.0.0

License

MIT

Unpacked Size

8.22 kB

Total Files

6

Last publish

Collaborators

  • samiahmedsiddiqui