Questions tagged [hashtag]

A hashtag is an in-text label that classifies content into a specific category, first popularized by Twitter users and now common in social media.

A hashtag is a hash sign (#) followed by a string which is usually alphanumeric, without spaces, punctuation or capitalization. It is used to classify the text in which it is contained and allow searching for related content.

Because of its adoption and usage by a large user base, it has been used in the filtering, searching and sorting of tweets and posts on other supporting social media platforms.

Examples

  • #StackOverflow
  • #StackExchange
  • #1337code
834 questions
-3
votes
1 answer

Get Other People Facebook Post Using Hashtag in VB 2010

** Help me guys i need a VB application that can search post by specific hashtag then save it into online or local database and also looking for twitter. ** if you want to help me more ive been looking for free mysqldatabase hosting site and how…
-3
votes
3 answers

Add a hashtag (#) to beginning of each word in a HTML 5 form

I have a form on a page on my HTML document and I was wondering if there is a way in javascript or jquery to add a hashtag (#) to the start of each word (there might be more than one word entered)
RubberDucky4444
  • 2,330
  • 5
  • 38
  • 70
-4
votes
1 answer

Adding a slice function to a string

Can someone explain to me how the slice function is working on the following example? (It is a Hashtag generator) function generateHashtag(str) { if (str.length >= 140 || str == "") { return false; } else { str =…
Danikas
  • 3
  • 2
-4
votes
3 answers

How to write hashtag in JavaScript?

I have a function like this: function tweet(){ window.open("https://twitter.com/intent/tweet?text=My text. #myHashtag" ); } But JavasScript stops at the # sign. How to write it?
Radek John
  • 105
  • 8
-4
votes
2 answers

Sort a list of dicts

I would like to know which hashtags are used the most in tweets so I did like this cursor = db.execute("SELECT text FROM myTable WHERE text LIKE '%#%' ") for row in cursor: for word in (re.findall(r"#(\w+)", row[0])): …
4m1nh4j1
  • 4,289
  • 16
  • 62
  • 104
-5
votes
1 answer

Python: Place # in front of several lines

After a Windows update I am unable in any Python writing application to place a # in front of several lines Normally, it is shift + #
user10374686
-5
votes
1 answer

Twitter Hashtags rss feed

I've been searching around the internet for an working twitter hashtag rss feed. But they were all outdates / not working. Example, echo'ing all the tweets with an "#EK2012" . I would apprentice if someone could help me. (Its for on my new…
Mr chinpansee
  • 379
  • 1
  • 3
  • 19
-6
votes
1 answer

Regex hashtag in contenteditable div not working properly

How do I change the color of all words that start with the # character to blue in a content-editable div while the user is typing. All it does right now is color all the matches but only if they come after a no matched word. Like this: #life…
nitrous
  • 1,677
  • 4
  • 15
  • 18
-11
votes
1 answer

Programmatically Send Picture In Instagram with Hashtag Using API

Is there anyway to send picture to user's instagram with HashTag? I checked documentation and did not see any information about this.
Arash
  • 3,013
  • 10
  • 52
  • 74
1 2 3
55
56