获取所有大写的推文

时间:2009-10-21 22:33:26

标签: regex search twitter case-sensitive

使用Twitter API,您将如何检索所有CAPS中的所有更新?

1 个答案:

答案 0 :(得分:3)

从SilentGhost的评论构建伪代码:

1. Retrieve all tweets
2. foreach tweet
    3. if (tweet.ToUpper() == tweet) then 
          4. Tweet Is All Caps

使用字符串匹配而不是正则表达式来解决此类问题。

相关问题