2011-10-18 21 views
6

Düzenli ifadelerle yeni yapıyorum. Aşağıdaki hatlardan yolu çıkarmak gerekir:Regex C yolundaki bir yol eşleştirmek için C#

XXXX  c:\mypath1\test 
YYYYYYY    c:\this is other path\longer 
ZZ  c:\mypath3\file.txt 

bir belirli satırın yolu döner bir yöntemi uygulamak gerekir. İlk sütun 1 veya daha fazla karakter içeren bir kelime, asla boş değil, ikinci sütun yoldur. Ayırıcı 1 veya daha fazla boşluk veya bir veya daha fazla sekme veya her ikisi olabilir. (. Bu birinci sütun asla boşluk veya sekme içerir varsayarak)

Bu sadece

string[] bits = line.Split(new char[] { '\t', ' ' }, 2, 
          StringSplitOptions.RemoveEmptyEntries); 
// TODO: Check that bits really has two entries 
string path = bits[1]; 

istedikleri gibi bana geliyor

+0

Girdi, dosya ya da çizgiler ayrı ayrı mı? –

+0

@RoyiNamir fark eder mi? – username

+0

evet. hat ve dosya için tedavi farklıdır. Eğer tex dosyasından satır satır okumak ve sonra da satır sonları chars vb dikkat çekmek gerekir. –

cevap

7

DÜZENLEME: Düzenli ifade olarak sadece bunu muhtemelen yapabilirsiniz:

Regex regex = new Regex(@"^[^ \t]+[ \t]+(.*)$"); 

örnek kod:

using System; 
using System.Text.RegularExpressions; 

class Program 
{ 
    static void Main(string[] args) 
    { 
     string[] lines = 
     { 
      @"XXXX  c:\mypath1\test", 
      @"YYYYYYY    c:\this is other path\longer", 
      @"ZZ  c:\mypath3\file.txt" 
     }; 

     foreach (string line in lines) 
     { 
      Console.WriteLine(ExtractPathFromLine(line)); 
     } 
    } 

    static readonly Regex PathRegex = new Regex(@"^[^ \t]+[ \t]+(.*)$"); 

    static string ExtractPathFromLine(string line) 
    { 
     Match match = PathRegex.Match(line); 
     if (!match.Success) 
     { 
      throw new ArgumentException("Invalid line"); 
     } 
     return match.Groups[1].Value; 
    }  
} 
+0

Yolları boşluk olabilir, bu yüzden ikincisi oldukça kötü. – xanatos

+0

@Jon: Üzgünüm, .NET 1.1 kullanıyorum ve StringSplitOptions.RemoveEmptyEntries aşırı yüklenmesine erişemediğim için düzenli bir açıklamaya ihtiyacım var. Yine de teşekkürler! –

+0

@ DanielPeñalba: Başlangıçta bunu söylemek işe yarardı - .NET 1.1'i gerektiren bu günlerde çok nadir. Düzenleyecek –

4
StringCollection resultList = new StringCollection(); 
try { 
    Regex regexObj = new Regex(@"(([a-z]:|\\\\[a-z0-9_.$]+\\[a-z0-9_.$]+)?(\\?(?:[^\\/:*?""<>|\r\n]+\\)+)[^\\/:*?""<>|\r\n]+)"); 
    Match matchResult = regexObj.Match(subjectString); 
    while (matchResult.Success) { 
     resultList.Add(matchResult.Groups[1].Value); 
     matchResult = matchResult.NextMatch(); 
    } 
} catch (ArgumentException ex) { 
    // Syntax error in the regular expression 
} 

Dağılımı:

@" 
(       # Match the regular expression below and capture its match into backreference number 1 
    (       # Match the regular expression below and capture its match into backreference number 2 
     |        # Match either the regular expression below (attempting the next alternative only if this one fails) 
     [a-z]       # Match a single character in the range between “a” and “z” 
     :        # Match the character “:” literally 
     |        # Or match regular expression number 2 below (the entire group fails if this one fails to match) 
     \\       # Match the character “\” literally 
     \\       # Match the character “\” literally 
     [a-z0-9_.$]     # Match a single character present in the list below 
              # A character in the range between “a” and “z” 
              # A character in the range between “0” and “9” 
              # One of the characters “_.$” 
      +        # Between one and unlimited times, as many times as possible, giving back as needed (greedy) 
     \\       # Match the character “\” literally 
     [a-z0-9_.$]     # Match a single character present in the list below 
              # A character in the range between “a” and “z” 
              # A character in the range between “0” and “9” 
              # One of the characters “_.$” 
      +        # Between one and unlimited times, as many times as possible, giving back as needed (greedy) 
    )?       # Between zero and one times, as many times as possible, giving back as needed (greedy) 
    (       # Match the regular expression below and capture its match into backreference number 3 
     \\       # Match the character “\” literally 
     ?        # Between zero and one times, as many times as possible, giving back as needed (greedy) 
     (?:       # Match the regular expression below 
     [^\\/:*?""<>|\r\n]    # Match a single character NOT present in the list below 
              # A \ character 
              # One of the characters “/:*?""<>|” 
              # A carriage return character 
              # A line feed character 
      +        # Between one and unlimited times, as many times as possible, giving back as needed (greedy) 
     \\       # Match the character “\” literally 
    )+       # Between one and unlimited times, as many times as possible, giving back as needed (greedy) 
    ) 
    [^\\/:*?""<>|\r\n]    # Match a single character NOT present in the list below 
            # A \ character 
            # One of the characters “/:*?""<>|” 
            # A carriage return character 
            # A line feed character 
     +        # Between one and unlimited times, as many times as possible, giving back as needed (greedy) 
) 
" 
+1

Bu, ilk boşluk/sekme kümesinden sonra temel olarak her şeyi elde etmek için oldukça karmaşık görünüyor. –

+0

@JonSkeet Katılıyorum. Windows yolu için daha genel bir ifade. – FailedDev

+0

@FailedDev, örneğin "k: \ test \ test" için çalışmıyor. ** \\ test \ t><* st ** gibi bir yolu geçmeye çalışırsam geçerli olur. Bu regex '^ (?: [C-zC-Z] \: | \\) (\\ [a-zA-Z _ \ - \ s0-9 \.] +) +' Buldu. Yolumu doğru şekilde doğrular. Bulunamadı [burada] (https://www.codeproject.com/Tips/216238/Regular-Expression-to-Validate-File-Path-and-Exten) – Potato

0

Regex Tester Regex hızlı test etmek için iyi web sitesidir.

Regex.Matches(input, "([a-zA-Z]*:[\\[a-zA-Z0-9 .]*]*)"); 
İlgili konular