Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save laphilosophia/e4419dae78aa2f8339ae23da7d2ed9b7 to your computer and use it in GitHub Desktop.
Save laphilosophia/e4419dae78aa2f8339ae23da7d2ed9b7 to your computer and use it in GitHub Desktop.
Javascript Turkish character to english characters change
String.prototype.turkishtoEnglish = function () {
return this.replace('Ğ','g')
.replace('Ü','u')
.replace('Ş','s')
.replace('I','i')
.replace('İ','i')
.replace('Ö','o')
.replace('Ç','c')
.replace('ğ','g')
.replace('ü','u')
.replace('ş','s')
.replace('ı','i')
.replace('ö','o')
.replace('ç','c');
};
// Example
// let text = 'Ne güzel bir gökkuşağı';
// newText = text.turkishtoEnglish();
// console.log(newText) /Ne guzel bir gokkusagi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment