hi, im trying to match a line of text
from the code below i want to match this line...
i've tried using this preg_match '#var addy_text(.*?)$#', but it also takes all the preceding lines too
from the code below i want to match this line...
Code:
var addy_text8756 = 'monique' + '@' + 'croydonebonyescort' + '.' + 'co' + '.' + 'uk';
i've tried using this preg_match '#var addy_text(.*?)$#', but it also takes all the preceding lines too
Code:
var addy8756 = 'monique' + '@';
addy8756 = addy8756 + 'croydonebonyescort' + '.' + 'co' + '.' + 'uk?subject=Referral%20from%20UK%20Independent%20Escorts%20List';
var addy_text8756 = 'monique' + '@' + 'croydonebonyescort' + '.' + 'co' + '.' + 'uk';
document.write( '<a ' + path + '\'' + prefix + ':' + addy8756 + '\'>' );
document.write( addy_text8756 );
document.write( '<\/a>' );