text-manipulation
v1.0.13
Published
A NPM library that assists in text range manipulation
Downloads
612
Maintainers
Readme
Text Manipulation
Overview
Manipulating and changing text ranges can be tricky and tedious at times. The intent of this project was to offer interfaces and functions that would make text ranges and buffers easy to operate on. Allowing for easy text transformations, that may span over multiple lines.
This library is supported in both TypeScript and JavaScript.
Typescript declaration files are contained within the library module.
Getting Stated
npm install -S text-manipulation
Text Manipulation Documentation
JavaScript Examples
Manipulating a Text Range in a Buffer
const textManipulation = require('text-manipulation');
// Create a text buffer
const buffer = textManipulation.createBuffer('Hello, World Again');
// Create a range
const range = textManipulation.createTextRange({column: 7, line: 0}, {column: 12, line: 0});
// Replace the range
buffer.replaceRange(range, 'Alex');
const text = buffer.getText();
console.log(text); // 'Hello, Alex Again'
Changing a Range with a MutableTextRange
The MutableTextRange class provides the abstraction to change a given range
const textManipulation = require('text-manipulation');
// Create a text buffer
const buffer = textManipulation.createBuffer('Hello, World Again');
// Create a range
const range = new MutableTextRange([{column: 7, line: 0}, {column: 12, line: 0}], buffer);
// Replace the range
range.setText('Alex');
console.log(range.getText()); // Alex
const text = buffer.getText();
console.log(text); // 'Hello, Alex Again'