URL Slugify एल्गोरिथ्म C # में?


86

इसलिए मैंने एसओ पर स्लग टैग के माध्यम से खोज की है और केवल दो सम्मोहक समाधान पाए हैं:

जो समस्या का आंशिक समाधान हैं। मैं खुद इसे कोड कर सकता हूं लेकिन मुझे आश्चर्य है कि अभी तक वहां कोई समाधान नहीं हुआ है।

तो, क्या C # और / या .NET में एक सुस्त alrogithm कार्यान्वयन है जो लैटिन वर्णों, यूनिकोड और विभिन्न अन्य भाषा के मुद्दों को ठीक से संबोधित करता है?


"सुस्त" का क्या मतलब है?
बिली ओनेल

7
slugify = एक URL या डेटाबेस या जो भी लेकिन आमतौर पर URL के हिस्से के रूप में उपयोग के लिए उपयोगकर्ता द्वारा प्रस्तुत स्ट्रिंग को सुरक्षित बनाते हैं।
चक्रित

जवाबों:


158

http://predicatet.blogspot.com/2009/04/improved-c-slug-generator-or-how-to.html

public static string GenerateSlug(this string phrase) 
{ 
    string str = phrase.RemoveAccent().ToLower(); 
    // invalid chars           
    str = Regex.Replace(str, @"[^a-z0-9\s-]", ""); 
    // convert multiple spaces into one space   
    str = Regex.Replace(str, @"\s+", " ").Trim(); 
    // cut and trim 
    str = str.Substring(0, str.Length <= 45 ? str.Length : 45).Trim();   
    str = Regex.Replace(str, @"\s", "-"); // hyphens   
    return str; 
} 

public static string RemoveAccent(this string txt) 
{ 
    byte[] bytes = System.Text.Encoding.GetEncoding("Cyrillic").GetBytes(txt); 
    return System.Text.Encoding.ASCII.GetString(bytes); 
}

लिंक पोस्ट ने ओपी के सवाल को अच्छी तरह से संतुष्ट किया।
इयान पी

6
45 वर्णों से परे लंबाई और छंटनी का उद्देश्य क्या है?

11
गैर लैटिन वर्णमाला के लिए समाधान काम नहीं करेगा। RemoveAccent विधि सिरिलिक वर्णों के लिए निकाल देगा। RemoveAccent ("Не работает") की तरह कुछ आज़माएं और परिणाम खाली स्ट्रिंग होगा: D
Evereq

इस समाधान से प्यार करें, इसका उपयोग करके 'ToSlug ()' नामक एक्सटेंशन बनाया है।
यासर शेख

12
कृपया ... उपयोग न करें RemoveAccent। इस SO प्रश्न की जाँच कैसे करें RemoveDiacriticsstackoverflow.com/questions/249087/…
मैक्सिमे रूइलर

21

यहाँ आपको c # में url slug उत्पन्न करने का एक तरीका मिल गया है। यह फ़ंक्शन सभी लहजे (मार्सेल का उत्तर) को हटा देता है, रिक्त स्थान को प्रतिस्थापित करता है, अमान्य वर्ण हटाता है, अंत से डैश को ट्रिम करता है और "-" या "_" की दोहरी घटनाओं को प्रतिस्थापित करता है।

कोड:

public static string ToUrlSlug(string value){

        //First to lower case
        value = value.ToLowerInvariant();

        //Remove all accents
        var bytes = Encoding.GetEncoding("Cyrillic").GetBytes(value);
        value = Encoding.ASCII.GetString(bytes);

        //Replace spaces
        value = Regex.Replace(value, @"\s", "-", RegexOptions.Compiled);

        //Remove invalid chars
        value = Regex.Replace(value, @"[^a-z0-9\s-_]", "",RegexOptions.Compiled);

        //Trim dashes from end
        value = value.Trim('-', '_');

        //Replace double occurences of - or _
        value = Regex.Replace(value, @"([-_]){2,}", "$1", RegexOptions.Compiled);

        return value ;
    }

17

यहाँ मेरा प्रस्तुतिकरण है, जोआन और मार्सेल के उत्तरों पर आधारित है। मेरे द्वारा किए गए परिवर्तन इस प्रकार हैं:

  • लहजे को हटाने के लिए व्यापक रूप से स्वीकृत विधि का उपयोग करें ।
  • मामूली गति सुधार के लिए स्पष्ट रेगेक्स कैशिंग।
  • अधिक शब्द विभाजकों को पहचाना और हाइफ़न के लिए सामान्यीकृत किया गया।

यहाँ कोड है:

public class UrlSlugger
{
    // white space, em-dash, en-dash, underscore
    static readonly Regex WordDelimiters = new Regex(@"[\s—–_]", RegexOptions.Compiled);

    // characters that are not valid
    static readonly Regex InvalidChars = new Regex(@"[^a-z0-9\-]", RegexOptions.Compiled);

    // multiple hyphens
    static readonly Regex MultipleHyphens = new Regex(@"-{2,}", RegexOptions.Compiled);

    public static string ToUrlSlug(string value)
    {
        // convert to lower case
        value = value.ToLowerInvariant();

        // remove diacritics (accents)
        value = RemoveDiacritics(value);

        // ensure all word delimiters are hyphens
        value = WordDelimiters.Replace(value, "-");

        // strip out invalid characters
        value = InvalidChars.Replace(value, "");

        // replace multiple hyphens (-) with a single hyphen
        value = MultipleHyphens.Replace(value, "-");

        // trim hyphens (-) from ends
        return value.Trim('-');
    }

    /// See: http://www.siao2.com/2007/05/14/2629747.aspx
    private static string RemoveDiacritics(string stIn)
    {
        string stFormD = stIn.Normalize(NormalizationForm.FormD);
        StringBuilder sb = new StringBuilder();

        for (int ich = 0; ich < stFormD.Length; ich++)
        {
            UnicodeCategory uc = CharUnicodeInfo.GetUnicodeCategory(stFormD[ich]);
            if (uc != UnicodeCategory.NonSpacingMark)
            {
                sb.Append(stFormD[ich]);
            }
        }

        return (sb.ToString().Normalize(NormalizationForm.FormC));
    }
}

यह अभी भी गैर-लैटिन चरित्र मुद्दे को हल नहीं करता है। एक पूरी तरह से वैकल्पिक समाधान स्ट्रिंग का अपने हेक्स प्रतिनिधित्व को परिवर्तित करने के लिए Uri.EscapeDataString का उपयोग करना होगा :

string original = "测试公司";

// %E6%B5%8B%E8%AF%95%E5%85%AC%E5%8F%B8
string converted = Uri.EscapeDataString(original);

फिर हाइपरलिंक उत्पन्न करने के लिए डेटा का उपयोग करें:

<a href="http://www.example.com/100/%E6%B5%8B%E8%AF%95%E5%85%AC%E5%8F%B8">
    测试公司
</a>

कई ब्राउज़र पता बार में चीनी अक्षरों को प्रदर्शित करेंगे (नीचे देखें), लेकिन मेरे सीमित परीक्षण के आधार पर, यह पूरी तरह से समर्थित नहीं है।

चीनी पात्रों के साथ पता पट्टी

नोट: इस तरह से काम करने के लिए Uri.EscapeDataString के लिए, iriParsing सक्षम होना चाहिए।


संपादित करें

सी # में URL स्लग उत्पन्न करने की चाह रखने वालों के लिए, मैं इस संबंधित प्रश्न की जाँच करने की सलाह देता हूँ:

स्टैक ओवरफ्लो अपने एसईओ के अनुकूल URL कैसे उत्पन्न करता है?

यह वही है जो मैंने अपने प्रोजेक्ट के लिए उपयोग किया है।


4

एक समस्या जो मैंने स्लगिफिकेशन (नए शब्द!) के साथ की है, वह है टकराव। यदि मेरे पास एक ब्लॉग पोस्ट है, उदाहरण के लिए, "स्टैक-ओवरफ्लो" और जिसे "स्टैक ओवरफ्लो" कहा जाता है, उन दो शीर्षकों के स्लग समान हैं। इसलिए, मेरे स्लग जनरेटर को आमतौर पर डेटाबेस को किसी तरह से शामिल करना पड़ता है। यह हो सकता है कि आप वहाँ से अधिक सामान्य समाधान न देखें।


6
व्यक्तिगत रूप से मैं स्लग को एक विशिष्ट पहचानकर्ता (यानी पूर्णांक) के साथ जोड़ना पसंद करता हूं ताकि यह सुनिश्चित हो सके कि वे अद्वितीय हैं। यह सबसे अच्छा समाधान नहीं है, लेकिन इससे मुझे परेशानी को दूर करने में मदद मिलती है।
जेरेमी कैड

1
बस एक टिप्पणी, एक एसईओ बिंदु से, प्रत्येक पृष्ठ के लिए यूआरएल और शीर्षक अद्वितीय होना चाहिए।
राफेल हर्सकोविसी

3

यहाँ पर मेरा शॉट है। यह समर्थन करता है:

  • डायक्टिरिक्स को हटाना (इसलिए हम "अमान्य" वर्णों को नहीं हटाते हैं)
  • परिणाम के लिए अधिकतम लंबाई (या dicritics को हटाने से पहले - "शुरुआती ट्रंकट")
  • सामान्यीकृत विखंडू के बीच कस्टम विभाजक
  • परिणाम अपरकेस या लोअरकेस के लिए मजबूर किया जा सकता है
  • समर्थित यूनिकोड श्रेणियों की विन्यास सूची
  • अनुमत पात्रों की श्रेणियों की विन्यास सूची
  • 2.0 का समर्थन करता है

कोड:

/// <summary>
/// Defines a set of utilities for creating slug urls.
/// </summary>
public static class Slug
{
    /// <summary>
    /// Creates a slug from the specified text.
    /// </summary>
    /// <param name="text">The text. If null if specified, null will be returned.</param>
    /// <returns>
    /// A slugged text.
    /// </returns>
    public static string Create(string text)
    {
        return Create(text, (SlugOptions)null);
    }

    /// <summary>
    /// Creates a slug from the specified text.
    /// </summary>
    /// <param name="text">The text. If null if specified, null will be returned.</param>
    /// <param name="options">The options. May be null.</param>
    /// <returns>A slugged text.</returns>
    public static string Create(string text, SlugOptions options)
    {
        if (text == null)
            return null;

        if (options == null)
        {
            options = new SlugOptions();
        }

        string normalised;
        if (options.EarlyTruncate && options.MaximumLength > 0 && text.Length > options.MaximumLength)
        {
            normalised = text.Substring(0, options.MaximumLength).Normalize(NormalizationForm.FormD);
        }
        else
        {
            normalised = text.Normalize(NormalizationForm.FormD);
        }
        int max = options.MaximumLength > 0 ? Math.Min(normalised.Length, options.MaximumLength) : normalised.Length;
        StringBuilder sb = new StringBuilder(max);
        for (int i = 0; i < normalised.Length; i++)
        {
            char c = normalised[i];
            UnicodeCategory uc = char.GetUnicodeCategory(c);
            if (options.AllowedUnicodeCategories.Contains(uc) && options.IsAllowed(c))
            {
                switch (uc)
                {
                    case UnicodeCategory.UppercaseLetter:
                        if (options.ToLower)
                        {
                            c = options.Culture != null ? char.ToLower(c, options.Culture) : char.ToLowerInvariant(c);
                        }
                        sb.Append(options.Replace(c));
                        break;

                    case UnicodeCategory.LowercaseLetter:
                        if (options.ToUpper)
                        {
                            c = options.Culture != null ? char.ToUpper(c, options.Culture) : char.ToUpperInvariant(c);
                        }
                        sb.Append(options.Replace(c));
                        break;

                    default:
                        sb.Append(options.Replace(c));
                        break;
                }
            }
            else if (uc == UnicodeCategory.NonSpacingMark)
            {
                // don't add a separator
            }
            else
            {
                if (options.Separator != null && !EndsWith(sb, options.Separator))
                {
                    sb.Append(options.Separator);
                }
            }

            if (options.MaximumLength > 0 && sb.Length >= options.MaximumLength)
                break;
        }

        string result = sb.ToString();

        if (options.MaximumLength > 0 && result.Length > options.MaximumLength)
        {
            result = result.Substring(0, options.MaximumLength);
        }

        if (!options.CanEndWithSeparator && options.Separator != null && result.EndsWith(options.Separator))
        {
            result = result.Substring(0, result.Length - options.Separator.Length);
        }

        return result.Normalize(NormalizationForm.FormC);
    }

    private static bool EndsWith(StringBuilder sb, string text)
    {
        if (sb.Length < text.Length)
            return false;

        for (int i = 0; i < text.Length; i++)
        {
            if (sb[sb.Length - 1 - i] != text[text.Length - 1 - i])
                return false;
        }
        return true;
    }
}

/// <summary>
/// Defines options for the Slug utility class.
/// </summary>
public class SlugOptions
{
    /// <summary>
    /// Defines the default maximum length. Currently equal to 80.
    /// </summary>
    public const int DefaultMaximumLength = 80;

    /// <summary>
    /// Defines the default separator. Currently equal to "-".
    /// </summary>
    public const string DefaultSeparator = "-";

    private bool _toLower;
    private bool _toUpper;

    /// <summary>
    /// Initializes a new instance of the <see cref="SlugOptions"/> class.
    /// </summary>
    public SlugOptions()
    {
        MaximumLength = DefaultMaximumLength;
        Separator = DefaultSeparator;
        AllowedUnicodeCategories = new List<UnicodeCategory>();
        AllowedUnicodeCategories.Add(UnicodeCategory.UppercaseLetter);
        AllowedUnicodeCategories.Add(UnicodeCategory.LowercaseLetter);
        AllowedUnicodeCategories.Add(UnicodeCategory.DecimalDigitNumber);
        AllowedRanges = new List<KeyValuePair<short, short>>();
        AllowedRanges.Add(new KeyValuePair<short, short>((short)'a', (short)'z'));
        AllowedRanges.Add(new KeyValuePair<short, short>((short)'A', (short)'Z'));
        AllowedRanges.Add(new KeyValuePair<short, short>((short)'0', (short)'9'));
    }

    /// <summary>
    /// Gets the allowed unicode categories list.
    /// </summary>
    /// <value>
    /// The allowed unicode categories list.
    /// </value>
    public virtual IList<UnicodeCategory> AllowedUnicodeCategories { get; private set; }

    /// <summary>
    /// Gets the allowed ranges list.
    /// </summary>
    /// <value>
    /// The allowed ranges list.
    /// </value>
    public virtual IList<KeyValuePair<short, short>> AllowedRanges { get; private set; }

    /// <summary>
    /// Gets or sets the maximum length.
    /// </summary>
    /// <value>
    /// The maximum length.
    /// </value>
    public virtual int MaximumLength { get; set; }

    /// <summary>
    /// Gets or sets the separator.
    /// </summary>
    /// <value>
    /// The separator.
    /// </value>
    public virtual string Separator { get; set; }

    /// <summary>
    /// Gets or sets the culture for case conversion.
    /// </summary>
    /// <value>
    /// The culture.
    /// </value>
    public virtual CultureInfo Culture { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the string can end with a separator string.
    /// </summary>
    /// <value>
    ///   <c>true</c> if the string can end with a separator string; otherwise, <c>false</c>.
    /// </value>
    public virtual bool CanEndWithSeparator { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the string is truncated before normalization.
    /// </summary>
    /// <value>
    ///   <c>true</c> if the string is truncated before normalization; otherwise, <c>false</c>.
    /// </value>
    public virtual bool EarlyTruncate { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether to lowercase the resulting string.
    /// </summary>
    /// <value>
    ///   <c>true</c> if the resulting string must be lowercased; otherwise, <c>false</c>.
    /// </value>
    public virtual bool ToLower
    {
        get
        {
            return _toLower;
        }
        set
        {
            _toLower = value;
            if (_toLower)
            {
                _toUpper = false;
            }
        }
    }

    /// <summary>
    /// Gets or sets a value indicating whether to uppercase the resulting string.
    /// </summary>
    /// <value>
    ///   <c>true</c> if the resulting string must be uppercased; otherwise, <c>false</c>.
    /// </value>
    public virtual bool ToUpper
    {
        get
        {
            return _toUpper;
        }
        set
        {
            _toUpper = value;
            if (_toUpper)
            {
                _toLower = false;
            }
        }
    }

    /// <summary>
    /// Determines whether the specified character is allowed.
    /// </summary>
    /// <param name="character">The character.</param>
    /// <returns>true if the character is allowed; false otherwise.</returns>
    public virtual bool IsAllowed(char character)
    {
        foreach (var p in AllowedRanges)
        {
            if (character >= p.Key && character <= p.Value)
                return true;
        }
        return false;
    }

    /// <summary>
    /// Replaces the specified character by a given string.
    /// </summary>
    /// <param name="character">The character to replace.</param>
    /// <returns>a string.</returns>
    public virtual string Replace(char character)
    {
        return character.ToString();
    }
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.