Skip to content

Parser configurável para textos simples utilizando Regex, escrito em Javascript.

License

Notifications You must be signed in to change notification settings

ijusplab/text-parser

Repository files navigation

TextParser

Configurable Javascript text parser using Regex used by the Innovation Lab of the Federal Justice of São Paulo (iJuspLab).

The library was developed in Typescript and can be used both in Node and in the browser. Distribution files are located inside the folder ./dist and type declaration files inside the folder ./types.

Installation:

npm install @ijuplab/text-parser

or

yarn add @ijuplab/parser

Usage:

const { parser } = require('@ijusplab/text-parser');

const text = 'Example text';

console.log(new parser(text));

or

ìmport { parser } from '@ijusplab/text-parser';

const text = 'Example text';
console.log(new parser(text));

Usage in the browser through a CDN:

As a global object:

<!-- Instalando no escopo global: -->
<script src="https://unpkg.com/@ijusplab/text-parser/dist/index.umd.min.js"></script>

<script>
  const text = 'Example text';
  console.log(TextParser);
  console.log(new TextParser.parser(text));
</script>

As a ES2016 module:

<!-- Instalando como um módulo: -->
<script type="module">
  import { parser } from 'https://unpkg.com/@ijusplab/text-parser/dist/index.esm.min.js';

  console.log(new TextParser.parser(text));
</script>

Licensing

Code

All software files are distributed under the MIT license. Copyright held by iJuspLab.

Assets

Any institutional symbols, such as coats of arms, emblems, badges, logos etc, belonging to or representing the Federal Justice of São Paulo (Justiça Federal de São Paulo - JFSP), iJuspLab, Equipe de Gestão de Dados - EGD, Incubadora de Soluções Tecnológicas, Núcleo de Inovação Tecnológica - NUIT or any of their agencies, departments, sectors, branches, affiliates, partners or controlling organizations, either stored in this repository or referenced herein through hyperlinks, are not licensed and may not be used without the prior written consent of the legal representatives of the Federal Justice of São Paulo.

About

Parser configurável para textos simples utilizando Regex, escrito em Javascript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published