M martinthurn New member Jan 9, 2010 #1 my $s = q{TYLEKMRILPYNS_IYGLPPRQ}; $s =~ m/(M.+?_)/; print $1;
M Mike New member Jan 9, 2010 #2 _ in a sequence. Any Tips? For example in a sequence like TYLEKMRILPYNS_IYGLPPRQ I need it to print out from the M to the _. If someone could just give me a hint or a tip on what I should do I would greatly appreciate it. With appreciation mike
_ in a sequence. Any Tips? For example in a sequence like TYLEKMRILPYNS_IYGLPPRQ I need it to print out from the M to the _. If someone could just give me a hint or a tip on what I should do I would greatly appreciate it. With appreciation mike
M martinthurn New member Jan 9, 2010 #3 my $s = q{TYLEKMRILPYNS_IYGLPPRQ}; $s =~ m/(M.+?_)/; print $1;