lumiere 0 Denunciar post Postado Janeiro 20, 2016 Olá, pessoal estou tentando criar uma expressão regex onde Se o modelo/pattern é “ab%d” Ele deve combinar com “abdgdgdgd” ou “abd” mas não com “abbbde” Tentei isso Regex pattern_1 = new Regex(@"([ab]([A-Z][d]$))", RegexOptions.IgnoreCase); pattern_1.IsMatch("abd"); Mas dá sempre false :( Compartilhar este post Link para o post Compartilhar em outros sites
KhaosDoctor 242 Denunciar post Postado Janeiro 20, 2016 Tente assim: https://regex101.com/r/tZ6gV7/2 Existem variações também: (ab\w*d) ^(ab[a-zA-Z]*d)$ ^ab[a-zA-Z]*d$ E assim vai. Compartilhar este post Link para o post Compartilhar em outros sites
lumiere 0 Denunciar post Postado Janeiro 20, 2016 Obrigada, consegui assim: pattern_1 = new Regex(@"([a][A-Z][c]$)", RegexOptions.IgnoreCase); Mas acho que é igual o que vc colocou :) Compartilhar este post Link para o post Compartilhar em outros sites