Skip to content

imoxto/extract-json-from-text

Repository files navigation

Extract Json From Text

Extract a JSON oboject or array from any piece of text

Usage

Install

npm i extract-json-from-text

Import

const { jsonFromText } = require("extract-json-from-text");
import { jsonFromText } from "extract-json-from-text";

Object Extraction

By default, it looks for an object in the string text

const str = `Lorem ipsum dolor sit amet, { "hello": "World" } consectetur adipiscing elit.`;
const jsonResults = jsonFromText(str);
console.log(jsonResults); // Object { "hello": "World" }

Array

If you have to extract an array from the text

const str = `Lorem ipsum dolor sit amet, [ "hello", "World" ] consectetur adipiscing elit.`;
const jsonResults = jsonFromText(str, "array");
console.log(jsonResults); // Array [ "hello", "World" ]

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published