-
-
Save kamilklkn/554f7de95bf696db02014c677ae108ab to your computer and use it in GitHub Desktop.
Javascript Turkish character to english characters change
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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