Sven E Olsson wrote:
> On 2007-08-31, at 02:01, Sven E Olsson wrote:
>
>
>> On 2007-08-31, at 01:54, Tom Russell wrote:
>>
>>
>>> I meant I cant out this:
>>>
>>> rg.SearchPattern = href=["]+...+["]
>>>
>>> in the ide, syntax error. Im trying to wrap the quotes now to use it.
>>>
>>> Thanks,
>>>
>>> Tom
>>>
>> dim SearchStr as string = "href=[" + chr(34) + "]" + chr(43) + "..."
>> + chr(43) + "[" + chr(34) +]"
>>
>> rg.SearchPattern = SearchStr
>>
>> ( Not tested )
>> Sven E
>>
>>
>>
>>
>
>
> BugFix:
>
>
>> dim SearchStr as string = "href=[" + chr(34) + "]" + chr(43) + "..."
>> + chr(43) + "[" + chr(34) + "]"
>>
>
> ( the last "]" )
>
>
> _______________________________________________
> Unsubscribe or switch delivery mode:
> <http://www.realsoftware.com/support/listmanager/>
>
> Search the archives:
> <http://support.realsoftware.com/listarchives/lists.html>
>
>
>
Thanks. Got it now.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|