[Solved] find cities and country name from string


It all starts from function start() at the bottom. For displaying purpose i’ve used a small dataset but you can require the data from the json file by using const data = require('data.json'). I’ve tested for large dataset also, works like a charm. Hope it helps.

const data = {
    "United States":[
    "Washington","Bratislava","Hard","Going"],  
    "Afghanistan": [
    "Herat",
    "Kabul",
    "Kandahar",
    "Molah",
    "Rana",
    "Shar",
    "Sharif",
    "Wazir Akbar Khan"
]};
Array.prototype.myJoin = function(start,end){
    if(!start) start = 0;
    if(!end) end = this.length - 1;
    end++;
    return this.slice(start,end);
};


const getCityData = async (country) => {
    return country;
}

const changeFormat = async () => {
    try {
        let countries = Object.keys(data).map( (country, index) => {
            return country;
        })
        let citiesData = [];
        await countries.map( (country, index) => {
            citiesData = citiesData.concat(data[country]);
        })
        return countries.concat(citiesData);
    } catch (err) {
        return err;
    }
}
const checkSentence = (text, text_original, number, modified_data) => {
    return new Promise((resolve, reject)=>{
        try {
            if( !text || !text.length ){
                throw new Error('empty text');
            }
            // console.log('started ' + number);
            // console.log('number ' + number +' started')
            let upperCase = [];
            const number_const = number;
            let temp1 = new Array(text.length);
            temp1.fill(2);
            temp1.map( (v, i) => {
                // let temp = text;
                let temp = [...text_original, ...[]];
                // console.log('i' + i);
                // console.log('number' + number);
                
                if(i + number <= text.length ) {
                    // console.log('inside 1st if');
                    temp = temp.slice(i, i + number)
                    // console.log(text + ' 1');
                    temp = temp.join(' ')
                    // console.log(text + ' 2');                    
                    temp = temp.toLowerCase();
                    // console.log(text + ' 3');                    
                    if(modified_data.indexOf(temp) != -1){                        
                        upperCase.push({ start: i, end: i + number - 1 })
                    }
                }
            })
            
            let toBeChanged = [];
            if(upperCase.length){
             upperCase.map( (v, i) => {
                 // console.log(v);
                 let arr = range( v.start, v.end )
                 toBeChanged = toBeChanged.concat(arr);
             })
            }
            // console.log('ended number' + number);
            // console.log(toBeChanged);
            return resolve(toBeChanged);
        } catch (err) {
            return reject(err);
            // console.error(err);
            // return false;
        }      
    })
}

const range = (start, end) => {
    // console.log(start);
    // console.log(end);
    return Array(end - start + 1).fill().map((_, idx) => start + idx)
}

const start = async() => {
    try {
        excludeWords.map( (word, index) => {
            excludeWords[index] = excludeWords[index].toLowerCase();
        });
        
        let modified_data_1 = await changeFormat(); 
        let maximum = 1;
        modified_data = modified_data_1.map( (v, i) => {
            if(v.split(' ').length > maximum){
                maximum = v.split(' ').length
            }
            if(excludeWords.indexOf(v.toLowerCase()) == -1) {
                return v.toLowerCase();
            }
        });
        text = text.split(' ');
        if(maximum > text.length){
            maximum = text.length;
        }
        // console.log(maximum);
        let temp = new Array(maximum);
        temp.fill(2);
        let answer = await temp.map( (v, i) => {
            let tempArray = [...text, ...[]];
            let tempArray1 = [...text, ...[]];
            return checkSentence(tempArray, tempArray1, (maximum - i), modified_data);
        })
        return Promise.all(answer).then( (results) => {
            let merged = [].concat.apply([], results);
            // console.log('merged');
            merged = new Set(merged);
            merged = [...merged];
            // console.log(merged);
            merged.map((v, i) => {
                if(v == undefined || v == null){
                    return;
                }
                let temp1 = text[v].split('');
                temp1[0] = temp1[0].toUpperCase();
                text[v] = temp1.join('');
            })
            // console.log(text.join(' '));
            return text.join(' ');
        }).catch((err)=>{
            console.log(err);
        })  
    } catch (err) {
        // console.error('here ERROR');
        console.error(err);
        return false;
    }
}

let excludeWords = ['Hard', 'Going'];
let text="united states to davis cup hard wazir Akbar Khan in bratislava";

( async () => {
    let answer = await start();
    console.log(answer);
})();

9

solved find cities and country name from string