regex - Perl match in context -
i find word in text file, , save variable along characters. example in text file like:
isoelectric point = 6.2505
i'll looping through directory of files, value of isoelectric point change, , why need characters after match saved variable.
if (my ($point) = $str =~ /isoelectric point = (\s+)/) { ... }
Comments
Post a Comment