I have a lot of string data, I want to know if data_i is subtring of
data_{i+1}
a simple case, data1=atcgat*ga tta, data2=atcgat*ts gatgat, they both
separated by an asterisk
I did
Regex separator=new Regex(@"^(\**)$ ");
then Ismatch() to check it
but this is incorrect, could you help me ? i am very new to C# please
help me
Thanks
data_{i+1}
a simple case, data1=atcgat*ga tta, data2=atcgat*ts gatgat, they both
separated by an asterisk
I did
Regex separator=new Regex(@"^(\**)$ ");
then Ismatch() to check it
but this is incorrect, could you help me ? i am very new to C# please
help me
Thanks
Comment