I need to perform a search for the following string within a dump of some HTML code
<td align="center"><SCRIPT type="text/javascript"><!--
I've tried to use the folowing code to implement this
However, because the search string contains quotation marks " the code syntax is not being recognised
Is there a easy way around this?
Thanks,
Os
<td align="center"><SCRIPT type="text/javascript"><!--
I've tried to use the folowing code to implement this
Code:
Range("a:a").Select
Set tipsdata = Selection.Find(What:="<td align="center"><SCRIPT type="text/javascript"><!--", after:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False)
However, because the search string contains quotation marks " the code syntax is not being recognised
Is there a easy way around this?
Thanks,
Os