Re: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Heath
I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. You can get this app free of charge at http://regstudio.adampresley.com. Hope this helps. Bobby. --- Karl [EMAIL PROTECTED] wrote: I need to take any email address and

RE: reverse compliment a sequence

2005-06-14 Thread Bobby Heath
How about this. cfscript newlist = ; string = A,C,G,C,T,A,C,T; for(i=1; i LTE listlen(string);i=i+1) { idx = listgetat(string,i); switch(idx) { case 'A': newlist = listAppend(newlist,'T');