I have a Javascript Regular Expression working to locate two or more consecutive '<BR>' tags in a string. Trouble is (for various reasons) it isn't a great solution to do it client side - can anyone translate this to work in ASP (VBScript) - I ahve had a go and can't get it to work:
var HasItGotBreaks = StringName.match(/((<br>\s+)|(<br>)){2,}/gi);
var HasItGotBreaks = StringName.match(/((<br>\s+)|(<br>)){2,}/gi);