Match() public method

public Match ( string input ) : GroupCollection
input string
return System.Text.RegularExpressions.GroupCollection
Exemplo n.º 1
0
        public static bool TryParse(string timeSpan, out TimeSpan result)
        {
            try
            {
                GroupCollection g;
                if ((g = Format1.Match(timeSpan)) != null)
                {
                    result = TimeSpan.FromSeconds(int.Parse(g["Minutes"].Value) * 60 + int.Parse(g["Seconds"].Value));
                    return(true);
                }
                else if ((g = Format2.Match(timeSpan)) != null)
                {
                    result = TimeSpan.FromSeconds(int.Parse(g["Hours"].Value) * 60 * 60 + int.Parse(g["Minutes"].Value) * 60 + int.Parse(g["Seconds"].Value));
                    return(true);
                }
                else if ((g = Format3.Match(timeSpan)) != null)
                {
                    result = TimeSpan.FromSeconds(int.Parse(g["Seconds"].Value));
                    return(true);
                }
                else if ((g = Format4.Match(timeSpan)) != null)
                {
                    result = TimeSpan.FromSeconds(int.Parse(g["Minutes"].Value) * 60);
                    return(true);
                }
            }
            catch
            {
            }

            result = TimeSpan.Zero;
            return(false);
        }
Exemplo n.º 2
0
 public static int ParseReleaseIdFromUri(string uri)
 {
     SimpleRegex regex = new SimpleRegex("^http://(www\\.)?discogs\\.com/.*release/(?<releaseId>[1-9][0-9]+?)(\\?.*)?$");
     GroupCollection collection = regex.Match(uri);
     if (collection == null)
     {
         return 0;
     }
     return int.Parse(collection["releaseId"].Value);
 }
Exemplo n.º 3
0
        public static int ParseReleaseIdFromUri(string uri)
        {
            SimpleRegex     regex      = new SimpleRegex("^http://(www\\.)?discogs\\.com/.*release/(?<releaseId>[1-9][0-9]+?)(\\?.*)?$");
            GroupCollection collection = regex.Match(uri);

            if (collection == null)
            {
                return(0);
            }
            return(int.Parse(collection["releaseId"].Value));
        }
Exemplo n.º 4
0
        public static string ParseArtistNameFromUri(string uri)
        {
            SimpleRegex regex = new SimpleRegex("^http://(www\\.)?discogs\\.com/artist/(?<artistName>.+?)(\\?.*)?$");
            GroupCollection collection = regex.Match(uri);
            if (collection == null)
            {
                return null;
            }

            string artistName = collection["artistName"].Value.Replace('+', ' ');
            return Uri.UnescapeDataString(artistName);
        }
Exemplo n.º 5
0
        public static string ParseArtistNameFromUri(string uri)
        {
            SimpleRegex     regex      = new SimpleRegex("^http://(www\\.)?discogs\\.com/artist/(?<artistName>.+?)(\\?.*)?$");
            GroupCollection collection = regex.Match(uri);

            if (collection == null)
            {
                return(null);
            }

            string artistName = collection["artistName"].Value.Replace('+', ' ');

            return(Uri.UnescapeDataString(artistName));
        }