Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/string/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Regex 获取所有都是大写的推文_Regex_Search_Twitter_Case Sensitive - Fatal编程技术网

Regex 获取所有都是大写的推文

Regex 获取所有都是大写的推文,regex,search,twitter,case-sensitive,Regex,Search,Twitter,Case Sensitive,使用Twitter API,您将如何检索所有CAP中的所有更新?根据SilentGhost的评论构建伪代码: 1. Retrieve all tweets 2. foreach tweet 3. if (tweet.ToUpper() == tweet) then 4. Tweet Is All Caps 对于此类问题,请使用字符串匹配而不是正则表达式。根据SilentGhost的注释生成伪代码: 1. Retrieve all tweets 2. foreach

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

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

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

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

根据SilentGhost的注释生成伪代码:

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

对于这种类型的问题,使用字符串匹配而不是正则表达式。

检索所有,过滤所有CAPS您有一些代码吗,先生?如果您需要代码,最好知道使用哪种语言//环境。我将使用PHP。我想知道API中是否有允许它的参数。检索所有,过滤所有CAPS您有一些代码吗,先生?如果您需要代码,最好知道使用哪种语言//环境。我将使用PHP。我想知道API中是否有允许它的参数。