I have a regex problem. I am trying to match this string : >1_4_138_F3
Here is my code:
if f3_entry =~ /(^>__*_F3)/
f3_out.puts f3_entry
end
Not exactly sure if I am in the right direction or not, but I want to
use the underscore as the matching point, while anything can be between
the underscores. Can anyone point me in the right direction?
- C