When parsing the <description> tags found in several RSS feeds, I’m noticing that if they end with [...], the value being displayed in my list is just the close bracket character ].
Here is but one example:
<description>
<![CDATA[
Warmup 2 mins thoracic spine mob [...]
]]>
</description>
I’ve tried replacing the [...] with the following line of code but the only character being displayed is the close bracket.
currentArticle.content = chars.replaceAll("[...]", "");
Ive ran into the same issue before. This is what ive done that worked well