Questions tagged [search-keywords]

20 questions
3
votes
0 answers

How to get search keywords using javascript?

What I want to do is to track the keywords my visitors used in search to land on my page. For example if you search for stackoverflow and then click on the link, I must be able to recognize using javascript that the user searched for stackoverflow I…
Xpleria
  • 5,472
  • 5
  • 52
  • 66
2
votes
1 answer

how to print the matched words in python

I have a text file and 2 user defined positive and negative files. I'am comparing the words present the 2 files with the text file, and returning either positive or negative. But i need to print those keywords in the text, which categorized them to…
Anagha
  • 3,073
  • 8
  • 25
  • 43
1
vote
1 answer

Excel: search if a specific keyword exists in a column

I was wondering if anyone out there can help to resolve the issue I am facing right now, actually I wanted to ask that I have 1 column with 5k + rows, and each row has a statement in it and if I search for a keyword , how come I can find out that…
1
vote
2 answers

Google Keyword Tools API

Is there anyway for developer to test Google keyword Tools API for free?
pang
  • 3,964
  • 8
  • 36
  • 42
1
vote
0 answers

Search Key for a Binary Search Tree populated by text file (Java)

Hi I'm fairly new to programming and have a project I was hoping to get some help with. I'm supposed to read some names and phone numbers from a text file and then use them to populate a binary search tree. Each line in the text file (there are 5…
Matthew
  • 35
  • 1
  • 5
1
vote
2 answers

How to add total number of same string with new column in data matrix with R

Suppose I have a matrix, 5 by 5 with fruit names (5 class fruits). I want to add 5 new columns in this existing matrix with the total number of single fruits in each of the rows, and finally one extra row to show the summation of each same kind of…
bim
  • 612
  • 7
  • 18
0
votes
0 answers

Google Ads Script add search queries to negative keyword list

I'm using this code to go through all search queries of my Google Search campaigns and then add certain search terms as negative keywords. Currently, it's adding the negative keyword into each ad group. How can I change the script to add the search…
xiaof
  • 1
0
votes
1 answer

Count every word in a text and arrangement with any number and how to clean useless symbols in text and print with count

how i can make my Wikipedia output with count all words in this text and arrangement them with the top 10 most existing words and print them without any symbols? import wikipedia wikipedia.set_lang("en") a = wikipedia.page("bitcoin") words =…
0
votes
2 answers

Capture the Keywords from the search field in the form in Webflow?

I have a search field in the header bar and want to capture Keywords what people are trying to find. I want to get and save the keywords in Webflow form back-end.
0
votes
2 answers

Should I put a space after a comma in the meta keywords tag?

In some meta tags, for example, , I put a space after each comma. Should I do the same for the meta keywords tag? I am asking this because I am not sure if putting a space after…
0
votes
3 answers

See if a String has keywords provided in LinkedList with equals()

Given this situation, i want to see if the string contains ALL of the given keywords, atleast once/word. My for loop does not seem to do it, so i'm interested if there is another way to try to solve the problem. LinkedList keyWords = new…
0
votes
0 answers

Passing a list of I.P addresses and fetching the response to search a particular keyword in python

I was writing a python script by taking references from Google and my task is to pass a list of I.P address ,check if the I.P is responsive or not , if responsive, fetch the response from port 80 or 443 and match a particular keyword in the response…
cradlr
  • 11
  • 3
0
votes
1 answer

Ruby gem to track search engines redirection traffic (search keyworks)

Most of the traffic from my site is sent by search engines. I am trying to track the keywords used on the search (EG to have real-time stats on the 'hottest' searches). What are my options? I thought of: Parsing the HTTP_REFERER (using a list…
Vlad Zloteanu
  • 8,464
  • 3
  • 41
  • 58
0
votes
1 answer

How to get searching result in categories wise in wordpress

I want to search any word and get the matched result as categories wise to show them under different categories in column . How to get the quire code for search page?
0
votes
0 answers

Finding Keywords in a text file with PowerShell on different lines

My apologies if what I am writing is a little confusing. I'm currently trying to write a PowerShell script that will search for a keyword in a text file. Something like this select-string $inputFile -pattern $templateName | foreach {$_.Line} |…
1
2