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

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -