I'm trying find reason of non-working search in my phpbb3 forum.
It works for different situation. but if i'm trying find word which exists in [code] tag it does not returns any results.
It is normal not to find text in code tags Read
this
As I understand, phpbb does not index words in tags as [code] and probably in other tags.
Later I will try find it in source
Related
I want to search for key words in my book I am writing with Google docs. I want key worrds to be presented in a list by the page number to see where and how many times a certain word occur.
I havent tried anything. This is my first test at using Stack overflow and my first problem solving using Python.
Is this something I can use for Google docs?
How to search for a string in text files?
I found the function is built into Docs already (cmd-shift-H).
I created a page crawler index and I'm testing all search modes, with all page types in the index content. By the way, the index is just searching for the exact word. example if I'm looking for the word "test" I must to write "test" to find it but if I search for "tes" is not finding anything.
How can I update this behavior?
You should take a look more into Analyzer types and what suits you best. If you set it to 'Subset', then it will show you results for 'tes' but also for 'est'. In this link, you can find more about them.
First of all sorry for my bad English.
Is there a way to search google for the file name.
so a right click menu script that runs google and searches for the file name
the main questions are
is it possible?
which coding language to use?
does it already exist or do i need to make it myself (with help)?
Do you mean filename is a title of a webpage? If so you can use allintitle: keyword:
https://www.google.com/search?q=allintitle:stackoverflow
will search for any page contains stackoverflow in the title.
Or to search within a URL, useallinurl: keyword:
https://www.google.com/search?q=allinurl:stackoverflow
will search for any page contains stackoverflow in the URL.
To search for specific type of file, usefiletype: keyword:
https://www.google.com/search?q=stackoverflow+filetype:pdf
will search for any page contains a PDF document about stackoverflow.
If that is what you mean, then it is possible, and you can use almost any programing language you like.
I would like to query two or three terms in order to locate them in Wikipedia´s entries. Specifically, I´m trying to see if some terms get repeated in the first paragraphs (abstract) across entries. Could be direct or through dbpedia. Thanks
Using Mediawiki API you can find articles that contain those keywords.
Try the API:Search documentation.
For doing what you want to do, also, you'd probably need to find the articles that have those keywords and then parse the text to check if they are in the first paragraphs.
With this:
?action=parse&page=Nicolas_Cage&prop=text§ion=0
you can get the HTML of the first section of a page (see this post).
Simple question. How do I search for code in my project within NetBeans 7.2 IDE? for example I want to find a Class name or any string of code, let's say I use this string "Apple is a fruit" in 10 Classes and 20 Methods and I want a list of all the locations it's being used in.
Note: I used Google Search and looked at relevant threads before posting this here, but all I found was how to make search programs, obviously a confusing topic for search engines.
Found the function in Edit> Find in Projects..