I am trying to to figure out how to display just the the word between the | and | in the description from the XML below. For example, the word "web" or "VideoGames".
I've tried this, but because each word has a different length, I'm unsuccessful. Also, i can't get rid of the |
<cfoutput>#Right(thefeed2.rsschannel.eachresult.resultnumber[x].metadata.xmlAttributes.v, 10)#</cfoutput>
I am also trying to do an opposite task - filter out the word between the | and | so it does not display. In otherwords taking the first item as an example, display the whole description, minus the word "web" or "VideoGames"
I've tried this, but again, I have the same problem as trying to filter out just the description, sans the word in between | and |.
<cfoutput>#left(thefeed2.rsschannel.eachresult.resultnumber[x].metadata.xmlAttributes.v, 500)#</cfoutput>
So my questions are...
1: How can i extract the word between | and | from the description element.
2: In a separate instance from number 1, how can I delete the word between | and | in the description?
By the way "thefeed2" is what I am calling the XML feed .
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<rsschannel>
<resultsnumbertotal>11 </resultsnumbertotal>
<eachresult>
<resultnumber N="1">
<U>/file.cfm?id=yahoocom </U>
<T>Yahoo </T>
<metadata N="description" V="Quickly find what you're searching for, get in touch with friends and stay in-the-know |Web|"/>
</resultnumber>
<resultnumber N="2">
<U>/file.cfm?id=halo </U>
<T>Halo </T>
<metadata N="description" V="Halo is a multi-billion dollar science fiction video game franchise created by Bungie and now managed by 343 Industries and owned by Microsoft Studios. |VideoGames|"/>
</resultnumber>
<resultnumber N="3">
<U>/file.cfm?id=bingcom </U>
<T>Bing </T>
<metadata N="description" V="Bing is a search engine that brings together the best of search and people in your social networks to help you spend less time searching and more time doing. |Web|"/>
</resultnumber>
<resultnumber N="4">
<U>/file.cfm?id=lal </U>
<T>Lakers </T>
<metadata N="description" V="The Los Angeles Lakers are an American professional basketball team based in Los Angeles, California. They play in the Pacific Division |Sports|"/>
</resultnumber>
<resultnumber N="5">
<U>/file.cfm?id=quick </U>
<T>Stay in the Know </T>
<metadata N="description" V="Quickly find what you're searching for, get in touch with friends and stay in-the-know |Misc|"/>
</resultnumber>
<resultnumber N="6">
<U>/file.cfm?id=multi </U>
<T>Billion Dollars </T>
<metadata N="description" V="Halo is a multi-billion dollar science fiction video game franchise created by Bungie and now managed by 343 Industries and owned by Microsoft Studios. |Misc|" />
</resultnumber>
<resultnumber N="7">
<U>/file.cfm?id=searching </U>
<T>Searches </T>
<metadata N="description" V="Bing is a search engine that brings together the best of search and people in your social networks to help you spend less time searching and more time doing. |Web|" />
</resultnumber>
<resultnumber N="8">
<U>/file.cfm?id=LosAngeles </U>
<T>Los Angeles </T>
<metadata N="description" V="The Los Angeles Lakers are an American professional basketball team based in Los Angeles, California. They play in the Pacific Division |Sports|"/>
</resultnumber>
<resultnumber N="9">
<U>/file.cfm?id=quick </U>
<T>Stay in the Know </T>
<metadata N="description" V="Quickly find what you're searching for, get in touch with friends and stay in-the-know |Misc|"/>
</resultnumber>
<resultnumber N="10">
<U>/file.cfm?id=LosAngeles </U>
<T>Los Angeles </T>
<metadata N="description" V="The Los Angeles Lakers are an American professional basketball team based in Los Angeles, California. They play in the Pacific Division"/>
</resultnumber>
<resultnumber N="11">
<U>/file.cfm?id=quick </U>
<T>Stay in the Know </T>
<metadata N="description" V="Quickly find what you're searching for, get in touch with friends and stay in-the-know |SummaryofDescription|"/>
</resultnumber>
</eachresult>
</rsschannel>
