ngx-stringly

2.0.0-alpha.6 • Public • Published

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

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i ngx-stringly

    Weekly Downloads

    7

    Version

    2.0.0-alpha.6

    License

    MIT

    Unpacked Size

    5.02 kB

    Total Files

    7

    Last publish

    Collaborators

    • rizentium