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

learn more… | top users | synonyms

124
votes
5answers
168k 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?
95
votes
4answers
59k 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 ...
93
votes
3answers
53k 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 ...
28
votes
11answers
22k 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 ...
40
votes
10answers
37k 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?
10
votes
8answers
15k 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
5answers
9k views

Vectors, structs and std::find

Again me with vectors. I hope I'm not too annoying. I have a struct like this : struct monster { DWORD id; int x; int y; int distance; int HP; }; So I created a vector : ...
8
votes
4answers
3k views

Why does Mac's $find not have the option -printf?

I have not found a reason why Mac's find does not have the option -printf. Apple normally decides to take options out which are not orthogonal to the other commands? How can you reach the same result ...
6
votes
2answers
5k views

In java under Windows, how do I find a redirected Desktop folder?

I know using .NET languages such as C#, one can do something like Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) to find the redirected location of the Desktop. However, ...
0
votes
2answers
2k views

Access VBA: Find max number in column and add 1

In my Access database, I have a table called "Demande". I want to read all of the records in the column "Numero de Commande" and read the largest number in the column so that I can use that number for ...
45
votes
5answers
18k 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: ...
11
votes
2answers
24k 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 () { ...
6
votes
4answers
3k views

Best way to find position in the Stream where given byte sequence starts

How do you think what is the best way to find position in the System.Stream where given byte sequence starts (first occurence): public static long FindPosition(Stream stream, byte[] byteSequence) { ...
20
votes
4answers
3k 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 ...
6
votes
5answers
13k views

jquery find and replace text, without element id

I'm playing around with finding and replacing text. The only problem I'm having is finding a text string, that is not attached to an element with an ID. Otherwise, it would be easy. I'm trying ...
2
votes
3answers
147 views

/usr/bin/find: cannot build its arguments dynamically

The following command works as expected interactively, in a terminal. $ find . -name '*.foo' -o -name '*.bar' ./a.foo ./b.bar $ However, if I do this, I get no results! $ ftypes="-name '*.foo' -o ...
3
votes
4answers
311 views

Simple unix command, what is the {} and \; for

With this set of commands, what are the {} and \; characters for? find . -name '*.clj' -exec grep -r resources {} \;
34
votes
3answers
30k 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
10answers
13k 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 ...
13
votes
10answers
7k 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 ...
16
votes
7answers
34k views

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

I know find method finds the supplied key in std::map and return an iterator 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 ...
22
votes
3answers
9k views

“find: paths must precede expression:” How do I specify a recursive search that also finds files in the current directory?

I am having a hard time getting find to look for matches in the current directory as well as its subdirectories. When I run find *test.c it only gives me the matches in the current directory. (does ...
8
votes
3answers
2k views

Rails virtual attribute search or sql combined column search

I have a user model with attributes 'first' and 'last' So for example User.first.first #=> "Charlie" User.first.last #=> "Brown" This User model also has a virtual attribute 'full_name' #user.rb def ...
10
votes
4answers
3k views

git find fat commit

Is it possible to get info about how much space is wasted by changes in every commit — so I can find commits which added big files or a lot of files. This is all to try to reduce git repo size ...
6
votes
3answers
3k views

Using `find -perm` to find when a permission is not set

I want to find the non-readable files in my directory (eg the files with g-r). So I tried this: find . -perm -g-r It shows me all of the files?? So I tried this: find . -perm -g+r And it showed ...
5
votes
4answers
5k views

getting all values from h1 tags using php

I want to receive an array that contains all the h1 tag values from a text Example, if this where the given input string: <h1>hello</h1> <p>random text</p> <h1>title ...
9
votes
5answers
9k 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"?
1
vote
6answers
1k views

How do I apply a shell command to many files in nested (and poorly escaped) subdirectories?

I'm trying to do something like the following: for file in `find . *.foo` do somecommand $file done But the command isn't working because $file is very odd. Because my directory tree has crappy ...
3
votes
1answer
1k views

bash: find -exec and filenames

I want to strip the HTML out of few hundred files. Here's the command I've started with: find -name *.html -exec w3m {} > w3m {}.html.out \; The problem I've run into is that it created one ...
0
votes
5answers
460 views

Selective iterator

FYI: no boost, yes it has this, I want to reinvent the wheel ;) Is there some form of a selective iterator (possible) in C++? What I want is to seperate strings like this: some:word{or other to a ...
105
votes
14answers
28k 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 ...
27
votes
3answers
16k views

PowerShell Script to Find and Replace for all Files with a Specific Extension

I have several configuration files on Windows Server 2008 nested like such: C:\Projects\Project_1\project1.config C:\Projects\Project_2\project2.config In my configuration I need to do a string ...
14
votes
2answers
43k views

jquery how to find if div with specific id exists

I've got a function that appends a div to an element on click. The function gets the text of the clicked element and assigns it to a variable called 'name'. That variable is then used as the div id ...
6
votes
4answers
2k views

Using ; vs + with exec in find

Why is there a difference in output between using find . -exec ls '{}' \+ and find . -exec ls '{}' \; I got: $ find . -exec ls \{\} \+ ./file1 ./file2 .: file1 file2 testdir1 ./testdir1: ...
27
votes
5answers
21k views

`find -name` pattern that matches multiple patterns

I was trying to get a list of all python and html files in a directory with the command find Documents -name "*.{py,html}". Then along came the man page: Braces within the pattern (‘{}’) are not ...
12
votes
4answers
870 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 ...
7
votes
3answers
20k views

Rails SQL Query with find

I want this SQL query to be written in rails controller using find: select id,name from questions where id not in (select question_id from levels_questions where level_id=15) How will I do this? I ...
6
votes
2answers
2k views

Use GNU find to show only the leaf directories

I'm trying to use GNU find to find only the directories that contain no other directories, but may or may not contain regular files. My best guess so far has been: find dir -type d \( -not -exec ls ...
9
votes
4answers
13k views

How to use regex with find command? [closed]

I have some images named with generated uuid1 string. For example 81397018-b84a-11e0-9d2a-001b77dc0bed.jpg. I want to find out all these images using "find" command: find . -regex ...
6
votes
5answers
14k views

Using DISTINCT in a CakePHP find function

I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. Choose the filter ...
4
votes
1answer
1k views

Command line: piping find results to rm

I'm trying to work out a command which deletes sql files older than 15 days. The find part is working but not the rm. rm -f | find -L /usr/www2/bar/htdocs/foo/rsync/httpdocs/db_backups -type f \( ...
4
votes
2answers
4k views

Find a UnorderedList <UL> control inside a master page from a content page in asp.net

I want to find a UL control and then find a LI within that UL and assign a css class to that from a content page.... <ul id="mainMenu" runat="server" style="width:350px;"> <li ...
3
votes
2answers
444 views

Finding all numbers in a string

Part of my app has an area where users enter text into a textBox control. They will be entering both text AND numbers into the textBox. When the user pushes a button, the textBox outputs its text into ...
15
votes
4answers
4k 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 ...
2
votes
2answers
940 views

How to Find the matched record in mongodb?

I have a record in my collection and I want to fetch the details of the person whose id is 1. But I am getting the details for 2times instead of 1. db.mycollection.insert({"person" : [ { "id":1, ...
2
votes
12answers
10k views

Unix 'find' + 'grep' syntax vs. awk

I was using this line to find the phrase, 'B206' within files in the directory I was in and all of its sub directories. find . -exec grep -s "B206" '{}' \; -print It crashes when it tries to read ...
1
vote
3answers
2k views

opencv finding image cordinates on another image

How to find image "A" coordinates on image "B" which contains image "A". I wrote this program which is only checking pixel values, does anyone know is there any library tool do this.
1
vote
3answers
3k views

Get element CSS3 background-color gradient with JS

At the moment I use the following JS (jQuery) to find the background color (as rgb) of several other divs: $theColor = $(this).css("background-color"); It works perfectly, except with CSS3 ...
18
votes
2answers
12k views

jquery find element by text

Can anyone tell me if it's possible to find an element based on it's content rather than by an id or class? I am attemoting to find elements that don't have distinct classes or id's. Upon doing that, ...
10
votes
1answer
2k views

Rails - HABTM Relationship — How Can I Find A Record Based On An Attribute Of The Associated Model

I have setup this HABTM relationship in the past and its worked before....Now it isnt and I'm at my wits end trying to figure out whats wrong. I've looking through the rails guides all day and cant ...

1 2 3 4 5