🕵️Detection Functions
A set of functions to detect the numbers from text or arrays.
Table of Contents
detectNumberPhrasesPosition
detectNumberPhrasesPosition(wordlist);const wordlist = ["أربعة", "عشر", "كتب"];
const phrases = detectNumberPhrasesPosition(wordlist);
console.log(phrases); // [[0, 1]]detectNumbers
detectNumberWords
Last updated