python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Limit HTML tags generated by JS
JS code below catches words from an input as hashtags and turn them to HTML span tag. I just need to put limitation at the amount of words and span tags that are generated by user. For example 10 word...
Sajed Khoshkar
Votes: 0
Answers: 1
Generate Instagram related Hashtags - API
I'm trying to generate multiple related hashtags based on the keyword entered by the user. For example: if the user has typed 'meme', it would generate multiples hashtags related to it (memes, funny m...
shakky
Votes: 0
Answers: 1
Regex to match a condition UNLESS it is a hashtag
I am trying to write a regex statement to remove digits or words that contain digits in them only if they are not a hashtag. I am able to succesfully match words that have digits in them, but cannot s...
Waleed Alfaris
Votes: 0
Answers: 1
How to create a dataframe from extracted hashtags?
I have used below code to extract hashtags from tweets.
def find_tags(row_string):
tags = [x for x in row_string if x.startswith('#')]
return tags
df['split'] = df['text'].str.split(' ')...
Piyush Ghasiya
Votes: 0
Answers: 1