Skip to content

Instantly share code, notes, and snippets.

@tahsingungordu
Created June 18, 2017 22:36
Show Gist options
  • Save tahsingungordu/f810c94b4c6b29475bbef32ac0346d2a to your computer and use it in GitHub Desktop.
Save tahsingungordu/f810c94b4c6b29475bbef32ac0346d2a to your computer and use it in GitHub Desktop.
javascript - Turkish character lowercase and uppercase functions.
String.prototype.turkishToUpper = function(){
var string = this;
var letters = { "i": "İ", "ş": "Ş", "ğ": "Ğ", "ü": "Ü", "ö": "Ö", "ç": "Ç", "ı": "I" };
string = string.replace(/(([iışğüçö]))/g, function(letter){ return letters[letter]; });
return string.toUpperCase();
};
String.prototype.turkishToLower = function(){
var string = this;
var letters = { "İ": "i", "I": "ı", "Ş": "ş", "Ğ": "ğ", "Ü": "ü", "Ö": "ö", "Ç": "ç" };
string = string.replace(/(([İIŞĞÜÇÖ]))/g, function(letter){ return letters[letter]; });
return string.toLowerCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment