🔦Extraction Functions
A set of functions to extract the numbers from text
Table of Contents
extractNumberPhrases
extractNumberPhrases(text)const text = "أنا أملك اثنين سيارات وثلاثة منازل";
const phrases = extractNumberPhrases(text);
console.log(phrases); // [ 'اثنين', 'وثلاثة' ]extractNumberContext
Last updated