Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ngx-stringly

rizentium8MIT2.0.0-alpha.6TypeScript support: included

Angular library for separating string into prefix, matched and suffix by search matching

angular, string, string-manipulation, string-matching, string-formatter, string-search

readme

ngx-stringly

Angular library for separating string into prefix, matched and suffix by search matching

Build Status GitHub tag (latest SemVer) GitHub

Installation

First, save ngx-stringly to your dependencies.

npm install ngx-stringly --save

How it Works

Import ngx-stringly to your component.

import { Searcher } from 'ngx-stringly/ngx';

Use Index in your functions

const text = 'The quick brown fox jumps over the lazy dog.';
const find = 'lazy';

this.result = Searcher.parse(text, find, false);

Result will be

{
  "prefix": "The quick brown fox jumps over the ",
  "content": "lazy",
  "suffix": " dog."
}

Run Example

I'm using angular 7 for example.

Clone the repository

git clone https://github.com/rizentium/ngx-stringly.git

Open example directory

cd example

Install packages

npm install

Run server

ng serve

And navigate your browser to http://localhost:4200