I need a regular expression like ([.\n]*)
but that doesn't work. I have tried the s
modifier also...
I want to get data from a table and the regular expression which is working in a few cases is:
~m/>(@ARGV)<\/.*\n(<td.*\n*.*\/td>\n){3}<td(.*\n*.*\n*)<\/td>/
I need to use the $3
, but the number of newlines is not defined and I have no idea how could I solve this problem. Can someone please help me?