0

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

4

1 回答 1

3

根据 SilentGhost 的评论构建伪代码:

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

对于此类问题,请使用字符串匹配而不是正则表达式。

于 2009-10-21T22:45:44.900 回答