vote up 2 vote down star
2

How can I search for specific tags in Stack overflow?

Return to the FAQ table of contents

flag
The link in "Moved to meta.stackoverflow.com Click here." on the original page, stackoverflow.com/questions/18557/…, appears to be broken. – Peter Mortensen Jul 14 at 14:49

migrated from stackoverflow.com

3 Answers

vote up 1 vote down

If you can see the tag you want, e.g. 'Perl' in a post on the screen, you can click on it.

link|flag
vote up 0 vote down

Click on the "Tags" button near the top of the page. That takes you to a list of tags. The default list is the most popular tags, sorted in descending order of popularity. Another tab takes you to an alphabetized list of tags. Click on the tag name to get a list of questions associated with that tag.

link|flag
thanks, I added that info in my post – jjnguy Oct 20 '08 at 14:36
vote up 3 vote down check

How to Search with Multiple Tags?

In Stackoverflow there are basically three ways to search for tags.

  • The first way involves the search box. Simply type the tag you are looking for inside of square brackets. You can search for multiple tags and you can search for other terms within the specified tags by specifying other terms in your search.

A simple example search looks like:

" [python] [beginner] tutorials

That searches for the term 'tutorials' in the tags 'python' and 'beginner'

This doesn't work...(

Some characters cannot be correctly represented in the search box (including the # symbol in some cases). To get around this use the URL escape term. (For the # sign it is %23)

)

  • The other way involves the URL Location bar. You can specify the tags you would like to search for in the URL Location bar in the following format:

    http://stackoverflow.com/questions/tagged/'a tag' 'another tag'

This way is a little more powerful because you can also specify qualifiers like 'or' or 'not'.

To search for a tag 'or' another tag simply put in the URL bar:

.../tagged/'the tag' or 'the other tag'

To search for a tag and not another tag simply put in the URL bar:

.../tagged/'the tag' -"the other tag'

These options can be mixed and matched as you see fit.
  • The final way is the simplest. It involves clicking on the little tag buttons. After clicking on a little tag, a search for that tag is done. You can then search for that tag 'and' another tag by choosing a tag from the list on the right side of the page. You can keep narrowing your search in that manner.

The initial tag buttons can be found in the tags tab, in questions or on the right side of the page.


Having answered a question on searching for multiple tags Rob Cooper got thinking, and since we don't have an "easy" way of doing it, Thought he would throw together a little "bookmarklet"..

Since Javascript links are blocked (or appear to be blocked) enter the following code as a bookmark location:

javascript:s=prompt('Enter Tags:');if (s==null) location.href='http://stackoverflow.com/tags'; else location.href='http://stackoverflow.com/questions/tagged/' + escape(s);

While testing in IE (8 Beta), looks like it whinges about the javascript domain.. Just OK it and it works fine :)

link|flag
searching for the tag [c#] doesn't work, as it can't deal with the #. anyone know a workaround? – yoyoyoyosef Oct 20 '08 at 14:30
I added a bit about special chars, I don't know a whole lot though...so some help would be appreciated. – jjnguy Oct 20 '08 at 14:33
The "tagged/..." syntax doesn't work for me. For example searching for <code>tagged/'ruby' -'rails'</code> turns into a search for <code>taggedruby -rails</code>. – Pistos Oct 20 '08 at 14:43
And, searching for "[ruby] -rails" makes SOF explode. :) – Pistos Oct 20 '08 at 14:43
you cannot mix the first two search ways. .../tagged/ruby -rails (... is the first part of the url) Try that. – jjnguy Oct 20 '08 at 14:52
Is it worth adding the javascript method from here: stackoverflow.com/questions/18557/… – Sam Hasler Oct 23 '08 at 14:43
I don't know when this changed, but the [c#] works for me without escaping. I assume it's been fixed since October. I don't have enough rep to edit, can someone change it? – mtruesdell Apr 9 at 18:15
searching only for [c#] is still broken, but otherwise it works – jjnguy Apr 9 at 19:14
"or" and not in the search box would be useful, consistent, easy for you ? – denis-bz Nov 11 at 10:32

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.