2009-11-30 11 views

Respuesta

27
if (x.Contains(c)) 
{ 
//// Do Something 
} 

Uso de .NET 3,0/3,5; necesitará un Bondad using System.Linq;

,

Dan

+0

No funciona con 'byte's, la respuesta con' Array.IndexOf' ↓ funciona. –

14

Usted podría utilizar Array.IndexOf método:

if (Array.IndexOf(x, c) > -1) 
{ 
    // The x array contains the character c 
} 
9

Si he entendido bien, es necesario comprobar si c es en x. Entonces:

if(x.Contains(c)) { ... } 
1
string input = "A_123000544654654"; 
string pattern = "[0-9]+"; 
System.Text.RegularExpressions.Regex.IsMatch(input, pattern); 
Cuestiones relacionadas