text-manipulation
TypeScript icon, indicating that this package has built-in type declarations

1.0.13 • Public • Published

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

Documentation (Click Here)

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'

Package Sidebar

Install

npm i text-manipulation

Weekly Downloads

12

Version

1.0.13

License

ISC

Unpacked Size

56.8 kB

Total Files

37

Last publish

Collaborators

  • mcchatman8009