PHP'den C# için aşağıdaki slugify yöntemi çevirmek çalışıyorum:Slugify ve C# Karakter Transliterasyon
: Burada kolaylık uğruna, yukarıdan kodu için: http://snipplr.com/view/22741/slugify-a-string-in-php/Düzenleme
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
: /**
* Modifies a string to remove al non ASCII characters and spaces.
*/
static public function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
if (function_exists('iconv'))
{
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
}
// lowercase
$text = strtolower($text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
if (empty($text))
{
return 'n-a';
}
return $text;
}
Ben PHP aşağıdaki kod satırının C# eşdeğer bulamıyorum dışında hiçbir dinlenme kodlama probleming var
Düzenleme: Bunun amacı ASCII olmayan karakterler çevirmek için böyle Reformáció Genfi Emlékműve Előtt
dizeye dönüştürme
Bitmiş çözümü göndermeyi umursamadan bir bakabilir miyim? – chakrit