JSFiddle - React, Tailwind, and code Playground
by jessekinsman
JavaScript
var text = `Furniture by Zone:
1. Classroom Activity & Seating Area
a. Copy: Tables, chairs, manipulatives, games, and puzzles to engage young learners.
2. Language and Literacy Area
a. Copy: Bookshelves, teaching easels, soft seating, leveled libraries, early readers, and more for ELA and ELL.`;
let newText = "";
const titleReg = /^([0-9]+\.)(\s)/gm;
newText += text.replace(titleReg, '{title: "');
console.log(newText);