{"id":1784,"date":"2019-01-16T10:16:02","date_gmt":"2019-01-16T09:16:02","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=1784"},"modified":"2022-07-25T08:35:43","modified_gmt":"2022-07-25T07:35:43","slug":"javascript-replace-diacritics-special-characters","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/javascript-replace-diacritics-special-characters\/","title":{"rendered":"Javascript replace Diacritics \/ Special Characters"},"content":{"rendered":"\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">const replaceDiacritics = str => {\n        str = `${str}`;\n        const diacritics = [\n            \/[\\300-\\306]\/g, \/[\\340-\\346]\/g, \/\/ A, a\n            \/[\\310-\\313]\/g, \/[\\350-\\353]\/g, \/\/ E, e\n            \/[\\314-\\317]\/g, \/[\\354-\\357]\/g, \/\/ I, i\n            \/[\\322-\\330]\/g, \/[\\362-\\370]\/g, \/\/ O, o\n            \/[\\331-\\334]\/g, \/[\\371-\\374]\/g, \/\/ U, u\n            \/[\\321]\/g, \/[\\361]\/g, \/\/ N, n\n            \/[\\307]\/g, \/[\\347]\/g, \/\/ C, c\n        ];\n        const chars = ['A', 'a', 'E', 'e', 'I', 'i', 'O', 'o', 'U', 'u', 'N', 'n', 'C', 'c'];\n\n        for (let i = 0; i &lt; diacritics.length; i++) {\n            str = str.replace(diacritics[i], chars[i]);\n        }\n        return str;\n    };\n\n\/\/ replace all non ascii characters (space to tilde)\nconst newStr = replaceDiacritics(String(oldStr)).replace(\/[^ -~]+\/gmi, '');\n\ufeff<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5,4,1],"tags":[],"class_list":["post-1784","post","type-post","status-publish","format-standard","hentry","category-javascript","category-programming","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1784","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=1784"}],"version-history":[{"count":3,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1784\/revisions"}],"predecessor-version":[{"id":3999,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/1784\/revisions\/3999"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=1784"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=1784"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=1784"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}