Sven E Olsson wrote:
> On 2007-08-31, at 02:03, 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 "]" )
>>
>>
>>
>
> Sorry, missed links like this:
> <link rel="stylesheet" href="styles/standard.css" type="text/css" />
>
> So we must include http://www
>
> href=["]+http://www[.]+...+["]
>
>
>
> Sven E
> -----------------------
> REALbasic 2007R3 OS X 10.4.10 Intel and 10.3.9/10.4.10 PPC
> SEEdit Maxi THE XHTML EDITOR FOR MACINTOSH
> http://www.seedit.info
>
>
>
> _______________________________________________
> Unsubscribe or switch delivery mode:
> <http://www.realsoftware.com/support/listmanager/>
>
> Search the archives:
> <http://support.realsoftware.com/listarchives/lists.html>
>
>
>
gotcha, thanks.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|