Author: Robert Jules Siegel
Short Link:http://www.houseoffusion.com/groups/nycfug/thread.cfm/threadid:403#1170
Piece o' cake.
Consider the text file (in memory) as a CF list with " (chr(34)) as the
delimiter.
Loop thru the list.
Any list items starting with 'http:' are the URLs you are looking for.
Robert Walters wrote:
----- Excess quoted text cut - see Original Post for more -----
Author: Robert Walters
Short Link:http://www.houseoffusion.com/groups/nycfug/thread.cfm/threadid:403#1169
I have a large text file with alot of xml garble. I need to strip out
all the url's
Example:
<Topic r:id="Top/Sports/Golf/Software">
<catid>30360</catid>
<link r:resource="http://fairwayfiles.com"/>
<link r:resource="http://www.goforgolf.com/"/>
</Topic>
<ExternalPage about="http://fairwayfiles.com">
<d:Title>Fairway Files Handicap System</d:Title>
<d:Description>A free web based golf handicap tracking and golf course
rating system. Calculate handicaps, create groups, print match
scorecards, track and graph scores, review courses.</d:Description>
<topic>Top/Sports/Golf/Software</topic>
</ExternalPage>
Any ideas on how to do this with CF where it takes out just the URL so I
get:
http://fairwayfiles.comhttp://www.goforgolf.comhttp://fairwayfiles.com
Thanks.....Rob