当前位置: 首页 > 知识库问答 >
问题:

获取流式搜索文本

萧卜霸
2023-03-14

我正在ruby平台上使用twitter流媒体API。在twitter gem的帮助下(https://github.com/sferik/twitter)我能找到流文本。

通过查看推文,我可以获得推文。

:文本=

但我需要准确的搜索文本,它输入了如下内容:search=

在检查推文,我得到的输出为

**#<Twitter::Tweet:0x007fb541799688 @attrs={:created_at=>"Tue Oct 22 01:05:09 +0000 2013", :id=>392456556538634240, :id_str=>"392456556538634240", :text=>"#linux #bluetooth  [PATCH v3 09/11] android: Add IPC helper for convenient error sending http://t.co/WTdtDxJ1AH", :source=>"<a href=\"http://dlvr.it\" rel=\"nofollow\">dlvr.it</a>", :truncated=>false, :in_reply_to_status_id=>nil, :in_reply_to_status_id_str=>nil, :in_reply_to_user_id=>nil, :in_reply_to_user_id_str=>nil, :in_reply_to_screen_name=>nil, :user=>{:id=>134530863, :id_str=>"134530863", :name=>"Linux Networking", :screen_name=>"linuxnet", :location=>"", :url=>"http://www.spinics.net/lists/linux-net/", :description=>"Linux Networking Discussion Archive", :protected=>false, :followers_count=>1706, :friends_count=>415, :listed_count=>73, :created_at=>"Sun Apr 18 17:56:03 +0000 2010", :favourites_count=>0, :utc_offset=>nil, :time_zone=>nil, :geo_enabled=>false, :verified=>false, :statuses_count=>167802, :lang=>"en", :contributors_enabled=>false, :is_translator=>false, :profile_background_color=>"131516", :profile_background_image_url=>"http://abs.twimg.com/images/themes/theme14/bg.gif", :profile_background_image_url_https=>"https://abs.twimg.com/images/themes/theme14/bg.gif", :profile_background_tile=>true, :profile_image_url=>"http://a0.twimg.com/profile_images/833409212/network-cable_normal.png", :profile_image_url_https=>"https://si0.twimg.com/profile_images/833409212/network-cable_normal.png", :profile_link_color=>"009999", :profile_sidebar_border_color=>"EEEEEE", :profile_sidebar_fill_color=>"EFEFEF", :profile_text_color=>"333333", :profile_use_background_image=>true, :default_profile=>false, :default_profile_image=>false, :following=>nil, :follow_request_sent=>nil, :notifications=>nil}, :geo=>nil, :coordinates=>nil, :place=>nil, :contributors=>nil, :retweet_count=>0, :favorite_count=>0, :entities=>{:hashtags=>[{:text=>"linux", :indices=>[0, 6]}, {:text=>"bluetooth", :indices=>[7, 17]}], :symbols=>[], :urls=>[{:url=>"http://t.co/WTdtDxJ1AH", :expanded_url=>"http://dlvr.it/49zHZy", :display_url=>"dlvr.it/49zHZy", :indices=>[89, 111]}], :user_mentions=>[]}, :favorited=>false, :retweeted=>false, :possibly_sensitive=>false, :filter_level=>"medium", :lang=>"en"}>**

共有1个答案

司寇研
2023-03-14

终于通过#{tweet['hashtags']}

 类似资料:
  • 应用内搜索 当应用内包含大量信息的时候,用户希望能够通过搜索快速地定位到特定内容。 最基本的搜索包括以下过程: 打开一个搜索文本框 输入查询并提交 显示搜索结果集 然而,可以通过加入一些增强功能来显著提升搜索体验: 启用语音搜索 提供基于用户最近历史查询的搜索建议,即使是在输入查询之前 提供满足应用数据中实际结果的自动完成搜索建议 应用内搜索中有两种主要的模式:持久性搜索(persistent s

  • 问题内容: 我是numpy的新手,并且正在python中使用随机森林实现集群。我的问题是: 如何找到数组中确切行的索引?例如 我寻找并得到结果1(第二行的索引)。 有什么建议吗?遵循代码(不起作用…) 问题答案: 为什么不简单地做这样的事情?

  • 我正在编写一种方法来搜索列表形式的文字文件,搜索用户输入的文字,但如果找到一个字母,程序将返回一个肯定的结果。例如,如果我搜索“f”,当没有单词时,它将返回字典中有一个单词“f”

  • 我已经用以下代码创建了datatable: 在结尾处,您可以看到我放置了一个initComplete以使搜索列位于每个列的底部。 我不需要有一个搜索当列是不可搜索的,例如,第一列和最后一个,因为它是不可搜索的。我使用列的编号并返回true,这样它就不会创建它了,但我想要一些更动态的东西,如果可搜索的列是false,那么返回true,这样我就不需要指定列的编号了。 谢谢你的帮助。

  • 回顾 在前面的章节(分页),我们已经加强了数据库查询,因此能够在页面上获取各种查询。 今天,我们会继续探讨数据库的话题,只是领域不同。所有存储内容的应用程序必须提供搜索能力。 许多其它类型的网站可能使用了谷歌、必应等索引所有的内容并且提供查询结果。这个对于大多数静态页面的网站,像论坛,是很好用。我们应用程序 microblog 的基本单元是用户短小的 blog,不是整个页面。我们希望搜索结果是动态

  • 本文向大家介绍vim 搜索模式,包括了vim 搜索模式的使用技巧和注意事项,需要的朋友参考一下 示例 在搜索文件时,Vim支持使用正则表达式。 表示您希望执行搜索的字符是/。 您可以执行的最简单的搜索如下 这将在整个文件中搜索的所有实例if。但是,我们的搜索if实际上是一个正则表达式,它将匹配单词的任何出现(if包括其他单词内部的匹配)。 举例来说,我们的搜索会说所有的下列单词匹配我们的搜索:if