const delAllNonPrintableCharacter = (str) => { const r = str.replace(/s/g, '') return { isEmpty: r.length === 0, str: r } }