>Where a single search doesn't work, I usually revert to finding the
>start index 'start = find("
>index 'end = find("", myStr, start) + 4' and then do a mid(myStr,
>start, end) call to pull it out. You may have to tweak that a little,
>but that's the idea.
>
>cheers,
>barneyb
>
>On Tue, 31 Aug 20
Use regexp?
REReplaceNoCase(str,"\s+","","all")
Pascal
> -Original Message-
> From: Josen Ruiseco [mailto:[EMAIL PROTECTED]
> Sent: 31 August 2004 18:28
> To: CF-Talk
> Subject: CFHTTP and replace() on Multiple Lines
>
> I am calling a
Where a single search doesn't work, I usually revert to finding the
start index 'start = find("
index 'end = find("", myStr, start) + 4' and then do a mid(myStr,
start, end) call to pull it out. You may have to tweak that a little,
but that's the idea.
cheers,
barneyb
On Tue, 31 Aug 2004 12:27:4
it appears that there are more than 1 carriage returns in your document, and you're only trying to replace 1.. actually only:
when maybe you should be replacing #chr(13)##chr(13)##chr(13)# for
how bout instead of chr(13) just use a physical cr ...
line = replace(document, '
', '', 'ALL')
I am calling a document via cfhttp. I am replacing numerous lines of text within the called document.
There is a snippet in the document that I cannot seem to grab:
Spacing is as it is in the doc...
I can grab the with no problem. But I cannot grab the because I will screw up the entire do
5 matches
Mail list logo