views:

117

answers:

2

I'm writing a simple Twitter example that reads the Twitter Search RSS feed via:

http://search.twitter.com/search.rss

This works well except that the Description in this contains HTML such as Bold Tags and Link Tags, I have looked at the Atom feed via:

http://search.twitter.com/search.atom

It also has HTML in the description, is there a version that contains just the plain-text for a Tweet? The documentation is a little vague plus RSS is missing from the formats list even though this works. Is there a secret way into this I just want the raw non-HTMLed Tweet!
Is this even possible, if not what would be the best way of stripping the HTML out of the string as all I need is the raw tweet.

+1  A: 

I think that the title tag of each entry is what you need.

apod
I did not notice the Title and Description were the same as I was looking at the RSS in browser and this was truncating the title, and in code I saw the HTML-fully so they appeared different.
RoguePlanetoid
+1  A: 

The removeHtmlTags template from this post can achieve what you are looking for.

<xsl:template name="removeHtmlTags">
    <xsl:param name="html"/>
    <xsl:choose>
        <xsl:when test="contains($html, '&lt;')">
            <xsl:value-of select="substring-before($html, '&lt;')"/>
            <!-- Recurse through HTML -->
            <xsl:call-template name="removeHtmlTags">
                <xsl:with-param name="html" select="substring-after($html, '&gt;')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$html"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

You didn't specify what you wanted the output to look like. Here is a simple example that prints each RSS item description element with "Description X.)" preceding the text.

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;
 <xsl:output indent="yes"  method="text"/>

    <xsl:template match="/">
  <xsl:apply-templates select="rss/channel/item/description"/>
    </xsl:template>

 <xsl:template match="description">
<!--This adds a label for each description: -->
Description <xsl:value-of select="position()"/>.)
  <xsl:call-template name="removeHtmlTags">
        <xsl:with-param name="html" select="." />
    </xsl:call-template>

 </xsl:template>

<xsl:template name="removeHtmlTags">
    <xsl:param name="html"/>
    <xsl:choose>
        <xsl:when test="contains($html, '&lt;')">
            <xsl:value-of select="substring-before($html, '&lt;')"/>
            <!-- Recurse through HTML -->
            <xsl:call-template name="removeHtmlTags">
                <xsl:with-param name="html" select="substring-after($html, '&gt;')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$html"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

</xsl:stylesheet>

Running that stylesheet against this RSS formatted search produces the following output:

Description 1.)
  Ke$ha desbanca Jay-Z e Lady Gaga na parada norte-americana   #adorei
Description 2.)
  STR8HIPHOP: VIDEO: Just Blaze Talks Baseline Records Studio &amp; His Work With Jay-Z:
    LTD Magazine talks to Just ... http://bit.ly/7y19WU
Description 3.)
  Nikon D3000 10MP $449.95 http://bit.ly/55gKZZ , DJ Hero Renegade Edition Featuring Jay-Z and Eminem $149 Amazon Now HURRY! http://bit.ly/5oW
Description 4.)
  #nowplaying Empire State Of Mind , jay-z and  alcia keys !
Description 5.)
  #NowPlaying R. Kelly - Fiesta Remix feat_ Jay-Z http://qstat.us/z6lp
Description 6.)
  50 Wants To Know Why Its Wrong For Beanie Sigel To Diss Jay-z But When The Game Disrespects Cu... http://tinyurl.com/yj5fma2
Description 7.)
  Nuove Foto: Mariah, Beyonce e Jay-Z, Monica! http://bit.ly/4Em2HL
Description 8.)
  NOW PLAYING: Jay-Z - Young Forever [Jay-Z + Mr Hudson] [Album Version] http://www.qmr.fm
Description 9.)
  Jay-Z tops News&apos; list of Hot New Yorkers in 2009 - http://shar.es/a91pQ
Description 10.)
  VIDEO: Just Blaze Talks Baseline Records Studio &amp; His Work With Jay-Z:
 LTD Magazine talks to Just Blaze about.. http://tinyurl.com/yzx3str
Description 11.)
  Download Cookin&apos; Soul Presents: Game &amp; Jay-Z – The RED Album | The …: Mash up posse producers Cookin&apos; Sou.. http://bit.ly/70rDNk
Description 12.)
  @Plex_Luthor you and Jay-Z! no way! lol The secret handshake ftw.
Description 13.)
  Questlove and Jay-Z make a bet on the World Series (The Fightins) http://o-x.fr/9yr7
Description 14.)
  Clip Jay-Z ft. Mr. Hudson - Young Forever: http://www.youtube.com/v/E1nbvplgElw http://bit.ly/4ze0If
Description 15.)
  musica nova → Jay-Z ft. Alicia Keys - Empire state of mind (New York) .. mto filé
Mads Hansen
That is handy - although the RSS did return an HTML-less value as the Title, there may be a situation where I may need to strip HTML from RSS, so thanks for this.
RoguePlanetoid