All Projects → sindresorhus → Splice String

sindresorhus / Splice String

Licence: mit
Remove or replace part of a string like Array#splice

Programming Languages

javascript
184084 projects - #8 most used programming language

splice-string Build Status

Remove or replace part of a string like Array#splice

Install

$ npm install --save splice-string

Usage

const spliceString = require('splice-string');

spliceString('unicorn', 3, 4, 'verse');
//=> 'universe'

spliceString('❤️🐴🐴', 1, 1, '🦄');
//=> '❤️🦄🐴'

API

spliceString(input, index, count, [insert])

input

Type: string

index

Type: number

Index to start splicing.

count

Type: number

Number of characters to remove.

insert

Type: string

String to insert in place of the removed substring.

License

MIT © Sindre Sorhus

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].