Hi,
I am trying to use the regular expressions to check if the input value has any characters other than T,C,G and A. I am using the following expression
[a-z-[bdefhijklmnopqrsuvwxyz]]*|[A-Z-[BDEFHIJKLMNOPQRSUVWXYZ]]*
But it only allows one character "T" to pass others fail sor t will check ok but TCGA or TC or TCGAGACT fails. Any ideas about how to construct the expression so the string is passed if only contains T,C,G and A. It should fail if it conatins any other characters.
Thanks