标签: hashtag

在读取数据时将"#"视为常规字符

我几乎可以肯定以前曾经问过这个问题但是由于某个社交媒体应用程序我淹没在无关的搜索结果中.

所以我导入的数据集包含实际的"#",如公寓#404,我想尽可能保留字符,但R认为它是行尾或其他东西.首先它会在第一次出现时弹出,然后我设置fill = TRUE,现在它只是忽略了该行的其余部分.

如何指示R将#作为常规字符?

r hashtag

3
推荐指数
1
解决办法
121
查看次数

在Python中使用函数作为re.sub的参数?

我正在编写一个程序来分割主题标签中包含的单词。

例如我想分割主题标签:

#Whatthehello #goback
Run Code Online (Sandbox Code Playgroud)

进入:

What the hello go back
Run Code Online (Sandbox Code Playgroud)

re.sub我在使用函数参数时遇到了麻烦。

我写的代码是:

import re,pdb

def func_replace(each_func):
    i=0
    wordsineach_func=[] 
    while len(each_func) >0:
        i=i+1
        word_found=longest_word(each_func)
        if len(word_found)>0:
            wordsineach_func.append(word_found)
            each_func=each_func.replace(word_found,"")
    return ' '.join(wordsineach_func)

def longest_word(phrase):
    phrase_length=len(phrase)
    words_found=[];index=0
    outerstring=""
    while index < phrase_length:
        outerstring=outerstring+phrase[index]
        index=index+1
        if outerstring in words or outerstring.lower() in words:
            words_found.append(outerstring)
    if len(words_found) ==0:
        words_found.append(phrase)
    return max(words_found, key=len)        

words=[]
# The file corncob_lowercase.txt contains a list of dictionary words
with open('corncob_lowercase.txt') as f:
    read_words=f.readlines()

for read_word in read_words:
    words.append(read_word.replace("\n","").replace("\r",""))
Run Code Online (Sandbox Code Playgroud)

例如,当使用这些函数时,如下所示: …

python regex string replace hashtag

3
推荐指数
1
解决办法
3023
查看次数

Javascript根据URL更改显示

我在页面上有4个div,带有唯一的ID.示例外部链接: www.website.com/page.html#one.

我需要显示(设置为none)才能更改为阻止.我有点亏本(我的JavaScript不是很强大).有任何想法吗?下面是我使用parce网址的代码,并在div ID是从字面上只是one,two,three,和four.

$(document).ready(function() 
{
    var hashVal = window.location.hash.split("#")[1];

    $("#" + hashVal).style.display = 'block';

});
Run Code Online (Sandbox Code Playgroud)

javascript jquery hashtag

2
推荐指数
1
解决办法
571
查看次数

如何存储用户提及

我想在Twitter中用@username实现用户提及.但是,在我的应用中,用户名可能会更改.我的方法是在保存到数据库之前解析帖子并将所有@username转换为@userId.你觉得这怎么样?有没有人有更好的选择?

php twitter hashtag

2
推荐指数
1
解决办法
1021
查看次数

在PHP中从字符串中提取Twitter主题标签

我需要一些关于twitter hashtag的帮助,我需要在PHP中提取某个hashtag作为字符串变量.到现在为止,我有这个

$hash = preg_replace ("/#(\\w+)/", "<a href=\"http://twitter.com/search?q=$1\">#$1</a>", $tweet_text);
Run Code Online (Sandbox Code Playgroud)

但这只是将hashtag_string转换为链接

php twitter hashtag

2
推荐指数
1
解决办法
1万
查看次数

Unix中的两个#标签包含哪些文件类型?

我对Linux相当陌生,因此决定清理一些目录。找到的文件包含在两个#(#random.c#,#nfirst.c#)中...这些#标签是什么意思?当我尝试通过终端rm这些文件时,它将标签视为注释...我已经尝试过双连字符绕过(rm-#first.c#)但它不起作用。因此,有人可以向我解释这些文件是什么以及如何创建/删除它们吗?

c unix linux ubuntu hashtag

2
推荐指数
1
解决办法
4971
查看次数

从推文中提取主题标签

我正在尝试进行情绪分析并面临一个小问题.我正在使用一个包含主题标签和其他垃圾值的字典(如下所示).它还具有相关联的标签权重.我想只将标签及其相应的权重提取到一个新的数据框中.有没有简单的方法呢?我已经尝试过使用regmatches,但有些是如何以列表格式提供输出并且搞乱了.输入:

            V1    V2
1    #fabulous 7.526
2   #excellent 7.247
3      superb 7.199
4  #perfection 7.099
5    #terrific 6.922
6 #magnificent 6.672
Run Code Online (Sandbox Code Playgroud)

输出:

            V1    V2
1    #fabulous 7.526
2   #excellent 7.247
3  #perfection 7.099
4    #terrific 6.922
5 #magnificent 6.672
Run Code Online (Sandbox Code Playgroud)

statistics analytics r hashtag sentiment-analysis

2
推荐指数
1
解决办法
655
查看次数

将hash标签转换为rails中的链接

我试图将主题标签转换为微博中的链接.我已经实现了一个名为simple_hashtag的gem,它似乎适用于链接方面.但是,gem通过从帖子中提取主题标签并在自己的循环中显示它们来工作.所以,例如,如果我的Micropost是:

    Today I went #snowboarding, it was #awesome
Run Code Online (Sandbox Code Playgroud)

提取标签的代码是作为循环完成的,这意味着它必须在内容之外完成.

    <p><%= micropost.content %></p>
    <ul>
        <% micropost.hashtags.each do |hashtag| %>
            <li><%= link_to hashtag.name, hashtag_path(hashtag.name) %></li>
        <% end %>
    </ul>
Run Code Online (Sandbox Code Playgroud)

这使完成的视图看起来像:

    Today I went #snowboarding, it was #awesome
    - snowboarding
    - awesome
Run Code Online (Sandbox Code Playgroud)

是否可以让代码扫描内容并用链接替换主题标签?我想知道是否有办法收集主题标签,将它们转换为链接,然后在内容中替换它们?

我知道我可以使用以下内容扫描内容并找到哈希值:

    <% content = micropost.content %>
    <% hashes = content.scan(/#\w+/) %>
    <% hashes.each do |hash| %>
        <%= hash %>
    <% end %>
Run Code Online (Sandbox Code Playgroud)

然后,我想使用类似hash.gsub!甚至是Javascript的东西,用链接替换内容中的主题标签,而不是将它们列在下面.

javascript ruby replace ruby-on-rails hashtag

2
推荐指数
2
解决办法
826
查看次数

用于标签的NSRegularExpression和带有特殊字符的提及?

我正在使用以下正则表达式来检测我的应用程序中的标签和提及.

NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"(#|@)(\\w+)" options:NSRegularExpressionCaseInsensitive error:&error];
Run Code Online (Sandbox Code Playgroud)

但是,我的应用程序中的用户可以在其用户名中使用一些特殊字符.例如@user.name@user_name.不允许有空格.然而,使用thins正则表达式只能检测@user它实际上应该是什么时候@user.name.人质工作完美但用户名中的特殊字符会破坏提及功能.

我是regex的新手,我不确定我需要改变什么才能解决这个问题.我很确定它可以做些什么,\\w+但我能在一些帮助下做些什么.

regex objective-c ios hashtag nsregularexpression

2
推荐指数
1
解决办法
909
查看次数

从熊猫数据框的列中提取主题标签

我有一个数据框df。我想从推文中提取主题标签,其中Max == 45 。:

Max    Tweets
42   via @VIE_unlike at #fashion
42   Ny trailer #katamaritribute #ps3
45   Saved a baby bluejay from dogs #fb
45   #Niley #Niley #Niley 
Run Code Online (Sandbox Code Playgroud)

我尝试这样的事情,但给空的数据框:

df.loc[df['Max'] == 45, [hsh for hsh in 'tweets' if hsh.startswith('#')]]
Run Code Online (Sandbox Code Playgroud)

熊猫里有什么我可以用来有效,更快地执行的吗?

python extract dataframe hashtag pandas

2
推荐指数
1
解决办法
1263
查看次数