Tagged Questions

This tag has multiple meanings. Please DO NOT use this tag if you're just trying to find something.

learn more… | top users | synonyms

68
votes
5answers
88k views

Find text string using jQuery?

Say a web page has a string such as "I am a simple string" that I want to find. How would I go about this using JQuery?
59
votes
13answers
10k views

How can I get `find` to ignore .svn directories?

I often use the find command to search through source code, delete files, whatever. Annoyingly, because Subversion stores duplicates of each file in its .svn/text-base/ directories my simple searches ...
57
votes
11answers
50k views

WPF ways to find controls

I am trying to collect all possible ways to find controls in WPF. To find control by name, by type, etc.
32
votes
4answers
6k views

Eclipse find in project?

Does Eclipse have a way to search a whole project for some text? Like Xcode's "find in project" feature. Thanks!
32
votes
3answers
20k views

What is fastest children() or find() in jQuery?

To select a child node in jQuery one can use children() but also find(). For example: $(this).children('.foo'); gives the same result as: $(this).find('.foo'); Now, which option is fastest or ...
18
votes
3answers
15k views

Find all elements on a page whose element ID contains a certain text using jQuery

I'm trying to find all elements on a page whose element ID contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly ...
14
votes
3answers
307 views

How to check if a value exists in a dictionary (python)

Hi I have the following dictionary in python: d = {'1': 'one', '3': 'three', '2': 'two', '5': 'five', '4': 'four'} I need a way to find if a value such as "one" or "two" exists in this dictionary. ...
14
votes
4answers
201 views

Python equivalent of find2perl

Perl has a lovely little utility called find2perl that will translate (quite faithfully) a command line for the Unix find utility into a Perl script to do the same. If you have a find command like ...
13
votes
2answers
126 views

php recursive folder readdir vs find performance

i came across few articles about performance and readdir here is the php script: function getDirectory( $path = '.', $level = 0 ) { $ignore = array( 'cgi-bin', '.', '..' ); $dh = @opendir( ...
12
votes
3answers
6k views

How to use '-prune' option of 'find' in sh?

I don't quite understand the example given from the 'man find', can anyone give me some examples and explanations? Can I combine regular expression in it? the more detailed question is like this: ...
12
votes
2answers
6k views

find -exec cmd {} + vs | xargs

Which one is more efficient over a very large set of files and should be used? find . -exec cmd {} + or find . | xargs cmd (Assume that there are no funny characters in the filenames)
11
votes
7answers
21k views

Checking value exist in a std::map - C++

I know find method finds the supplied key in std::map and return an interator to the element. Is there anyway to find the value and get an iterator to the element? What I need to do is to check ...
11
votes
5answers
6k views

How do I use a pipe in the exec parameter for a find command?

I'm trying to construct a find command to process a bunch of files in a directory using two different executables. Unfortunately, -exec on find doesn't allow to use pipe or even \| because the shell ...
10
votes
3answers
180 views

Python: find first element in a sequence that matches a predicate

Stupid question ahead: I want an idiomatic way to find the first element in a list that matches a predicate. The current code is quite ugly: [x for x in seq if predicate(x)][0] I've thought about ...
10
votes
6answers
593 views

STL find performs better than hand-crafted loop

I have some question. Given the following C++ code fragment: #include <boost/progress.hpp> #include <vector> #include <algorithm> #include <numeric> #include <iostream> ...
10
votes
6answers
1k views

find -exec a shell function?

Is there a way to get find to execute a function I just defined in a bash script? dosomething () { echo "doing something with $1" } find . -exec dosomething {} \; find just tells me: find: ...
10
votes
10answers
9k views

Capturing output of find . -print0 into a bash array

Using find . -print0 seems to be the only safe way of obtaining a list of files in bash due to the possibility of filenames containing spaces, newlines, quotation marks etc. However, I'm having a ...
10
votes
11answers
8k views

How to use 'find' to search for files created on a specific date?

How do I use the UNIX tool 'find' to search for files created on a specific date?
9
votes
4answers
556 views

MATLAB-style find() function in Python

In MATLAB it is very easy to find the indecies of values that meet a particular conditions: >> a = [1,2,3,1,2,3,1,2,3]; >> find(a > 2) % find the indecies where this condition is ...
9
votes
3answers
401 views

How to improve performance of File::Find::Rule calls?

I am using File::Find::Rule to locate one-level-deep user-executable folders in a directory specified in $dir: my @subDirs = File::Find::Rule->permissions(isExecutable => 1, user => ...
9
votes
4answers
648 views

Don't show uninteresting files in Emacs completion window

How do I prevent Emacs from showing me all the files I'm not interested in (such as ~ backup files, .pyc files, or .orig files) when I: C-x C-f TAB ? It is working in one respect: if I know the file ...
9
votes
2answers
6k views

jquery: find element whose id has a particular pattern

I am trying to find a span element who has an id in a particular pattern. Its main use is to find certain elements rendered by an asp.net (aspx) page which is derived from a master page.
9
votes
3answers
6k views

How to select where ID in Array Rails ActiveRecord without exception

When I have array of ids, like ids = [2,3,5] and I perform Comment.find(ids) everything works fine. But when there is id that doesn't exist, I get an exception. This occurs generaly when I get ...
9
votes
10answers
4k views

Batch script to replace PHP short open tags with <?php

I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags. change "<?" into "<?php" I think this ...
8
votes
2answers
400 views

C++, find unused code and includes

Are there any no-cost tools (or direct Eclipse CDT plugins) that scan C++ code for unused functions, methods, variables, includes...? I only found this stuff for C# and Java, but I'd like to have it ...
8
votes
2answers
10k views

jQuery - Find and replace text, after body was loaded

I received some amazing help from others, concerning finding and replacing text with jquery. The code below will find the word: "Subject:" and replace it with "Name:" $("*").each(function () { ...
8
votes
8answers
15k views

ls command: how can I get a recursive full-path listing, one line per file?

How can I get ls to spit out a flat list of recursive one-per-line paths? For example, I just want a flat listing of files with their full paths: /home/dreftymac/. /home/dreftymac/foo.txt ...
8
votes
2answers
2k views

Best way to do a find/replace in several files?

what's the best way to do this? i'm no command line warrior, but i was thinking there's possibly a way using grep and cat. i just want to replace a string that occurs in a folder and sub-folders. ...
8
votes
10answers
2k views

Semantic difference between “Find” and “Search”?

When building an application, is there any meaningful difference between the idea of "Find" vs "Search" ? Do you think of them more or less as synonymous? I'm asking in terms of labeling for ...
7
votes
1answer
3k views

jQuery how to find an element based on a data-attribute value?

I've got the following scenario: var el = 'li'; and there are 5 <li>'s on the page each with a data-slide=number attribute (number being 1,2,3,4,5 respectively). I now need to find the ...
7
votes
1answer
962 views

Xcode find in document stuck in case-sensitive

When in Xcode editing code for my objective C files, I often press Command-F to bring up the little Find-In-Document banner across the top. Sometimes this gets stuck in case-sensitive search, and when ...
7
votes
2answers
298 views

browser ctrl-f find and non-visible text

Can the browser feature of contrl+F to find text be integrated with text in popup windows. I'd like to have some scientific reference information given when someone hovers over a species name in a ...
7
votes
5answers
2k views

How to run a command recursively on all files except for those under .svn directories

Here is how i run dos2unix recursively on all files: find -exec dos2unix {} \; What do i need to change to make it skip over files under .svn/ directories?
7
votes
3answers
877 views

find unused images, css rules, js script blocks

We have a fairly large asp.net website. The images, css and javascripts are property organized in the website project but as we are changing the look and feel of the website, I would like to know if ...
7
votes
3answers
566 views

Is it possible to dock the “Find/Replace” window in Eclipse?

I could have sworn I saw it once before in a screencast where someone had the find/replace window docked in their Eclipse environment. However looking through the list of options in "Window > Show" ...
7
votes
8answers
3k views

How can I verify that a value is present in an array (list) in Perl?

I have a list of possible values: @a = qw(foo bar baz); How do I check in a concise way that a value $val is present or absent in @a? An obvious implementation is to loop over the list, but I am ...
7
votes
6answers
10k views

How do I form a good predicate delegate to Find() something in my List<T>?

After looking on MSDN, it's still unclear to me how I should form a proper predicate to use the Find() method in List using a member variable of T (where T is a class) For example: public class Car ...
6
votes
2answers
100 views

What's the purpose of the curly braces after a perl -e line

I know some real perl basics, and I've been using this one liner to rename files: find . -type f -exec perl -e 'rename($_,lc) for @ARGV' {} \; The find passes a list of files to the perl one liner, ...
6
votes
3answers
155 views

VIM: how to highlight all previously deleted text after an undelete

I often use a command or script to delete text and after I do an undelete (u) I want to see what has been previously deleted by the command/script. Is it possible to highlight the previous deleted ...
6
votes
8answers
2k views

Recursively rename files using find and sed

I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought ...
6
votes
2answers
265 views

Find mapped value of map

Is there a way in C++ to search for the mapped value (instead of the key) of a map, and then return the key? Usually, I do someMap.find(someKey)->second to get the value, but here I want to do the ...
6
votes
3answers
193 views

How to search for an element in a vector?

i have a code like this.... std::vector<string>::iterator p; p = find(v.begin(),v.end(),"asdasda"); cout << *p << endl; if "asdasda" is not a part of the vector, p points to ...
6
votes
4answers
1k views

How can I use File::Find in Perl?

I'm a bit confused from File::Find documentation... what is the equivalent to $ find my_dir -maxdepth 2 -name "*.txt"?
6
votes
2answers
271 views

Find long (>255) filenames

There are some folder with more than 100 files on it. But all files and folders names broken with wrong encoding names (UTF->ANSI). "C:\...\Госдача-Лечебни ...
6
votes
4answers
244 views

Why does string::find return size_type and not an iterator?

In C++, why does string::find return size_type and not an iterator? It would make sense because functions like string::replace or string::insert take iterators as input, so you could find some ...
6
votes
5answers
282 views

How to find text in images with the browser control+F

Have HTML pages with many sections and each section has a section title displayed as an image (to use nice font). The problem is that even if I specify an 'alt' and 'title' text on each image/title ...
6
votes
2answers
1k views

How can I make named_scope in Rails return one value instead of an array?

I want to write a named scope to get a record from its id. For example, I have a model called Event, and I want to simulate Event.find(id) with use of named_scope for future flexibility. I used ...
6
votes
3answers
2k views

Finding elements in a scala list and also know which predicate has been satisfied

I have the following problem in scala. I have to find the first element in al list which satisfies a predicate function with two conditions in OR. The problem is that I would like to get the element ...
6
votes
3answers
2k views

Exclude file types from search in Visual Studio

Often when I want to search through my code in Visual Studio, I know the thing I'm looking for is in some C# code. However, as I've used the same variable name in a javascript file, I have to wade ...
6
votes
9answers
4k views

Using grep to find files that doesn't contain a given string pattern

I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories). find . -not -ipath '.*svn*' -exec grep ...

1 2 3 4 5 30