This tag has multiple meanings. Please DO NOT use this tag if you're just trying to find something.
0
votes
2answers
106 views
Object has not method find?
var links = ""
$('#right').load('www.mywebsite.com/download', function(data) {
data.find(".download-row a").each(function(){
links += $(this).attr("href");
});
});
When I run this ...
1
vote
1answer
282 views
Excel VBA Find All
As usual, I've wasted hours working on a problem before finally giving in and asking for help, so any help would be greatly appreciated!
I'm running a while loop on Sheet Test1 of my data in order to ...
0
votes
1answer
73 views
unordered_map::find doesn't work for STL types
for C++ basic types, it works
unordered_map<string, int> m;
unordered_map<string, int>::iterator itr;
string s;
itr = m.find(s);
It compiles with no problem.
However, when I try
...
1
vote
3answers
40 views
How to create a backup of files' lines containing “foo”
Basically I have a directory and sub-directories that needs to be scanned to find .csv files. From there I want to copy all lines containing "foo" from the csv's found to new files (in the same ...
0
votes
3answers
76 views
How to count filename length using awk?
How to count max, min and average length of filenames in a directory using awk and find to print the full path?
I need to make it in a bash script.
The paths are found this way:
find $1 -type f ...
1
vote
1answer
109 views
Find and read specific string from config file with Pascal Script in Inno Setup
I have quite long config file and I need to extract specific strings from the file.
What I want to extract/read is InstallDir for specific number position e.g. for 20540.
I know how to find string ...
0
votes
1answer
44 views
mongodb best array match
Suppose I have the following structure
[{
name: 'John',
tags: ['unix','databases']
},
{
name: 'Jane',
tags: ['excel', 'power-point','word', 'outlook']
...
0
votes
0answers
41 views
copy over 100 files at a time with xarg or script?
I have over 1.3M files in a dir and I need to move them from j:/hold to j:/hold2 (all while a java app 'watches' the dir for any files to drop in and process them) I cannot just 'rename' the dir ...
0
votes
3answers
75 views
Search vectors in returned iterator
Context:
I perform a std::find with a std::string on a <-string,vector->map. It then returns me an iterator of vectors, I keep the returned iterator in a const-iterator.
Problem:
I now want to ...
0
votes
0answers
35 views
How can customize the linux find command
I have this command in my bashrc
mygrep() {
find /var/www/project1 -name '*.py' -o -name '*.html' -o -name '*.js' -type f | xargs grep -Hn "$1" ;
}
i want few modification
I don't ...
0
votes
1answer
65 views
php search string in another string from array
I need something like this
$keywords = array('google', 'yahoo', 'facebook');
$mystring = 'alice was going to the yahoo CEO and couldn't him her';
$pos = strpos($mystring, $keywords);
if ($pos === ...
0
votes
1answer
68 views
0
votes
1answer
39 views
CakePhp find doesn't fetch hasMany relationships
I've got these simple models:
// ActivityLog
class ActivityLog extends AppModel {
public $name = 'ActivityLog';
public $useTable = "activity_logs";
public $hasMeny = ...
0
votes
1answer
49 views
Besides getting better performance, why do we need to use find() in jQuery?
I'm aware of that using find may get a better performace when searching for elements
$('#parent').find('.child'); > $('#parent .child');
But are there any conditions that we must use find() instead ...
0
votes
1answer
34 views
vectorize a search function matlab
looking for an efficient way to vectorize a search
say A is 2 by 4 array
x y z a
.2 0.97 34.2 4.5
and B is a 1 by 1000 array
a x x x x y y y z z a .........
How do I get ...
0
votes
3answers
79 views
Trying to use the unix command 'find' to find all files checked into RCS
I am trying to use the find command to find all of the files that are checked into RCS from my home directory. This includes files that end in things like c,v. When I run the commands such as
find . ...
2
votes
2answers
82 views
find values in map of map & return primary map's keys (or alternative)
I'm writing a websocket++ server for a site that's mostly a few pages with article listings like you'd see on any social news site or the questions link on stack; however, I dynamically change the ...
0
votes
3answers
167 views
Matlab: Find row indice of first occurrence for each column of matrix (without using loops)
For each column of a matrix A consisting of '0' and '1', I would like to find the column indices of the first occurrence of '1' if exists. For example, if A is defined as:
A=[0 0 0 0;
0 0 0 1;
...
0
votes
2answers
90 views
How to speed up through-put of “find . -type f -size +0 -exec ./work.sh {} \;”
When calling the following command I found that it runs slowly despite neither disk nor CPU nor memory being consumed too much (checked with top / iotop)
find . -type f -size +0 -exec ./work.sh {} \;
...
0
votes
2answers
138 views
Batch: find file and rename it / find file and delete it
So... yes, Im pretty newbie. Still trying to explain as good as possible.
But needing help with such thing as finding exact file from C: drive (with batch),
and rename it.
Also wanted to know how to ...
0
votes
1answer
33 views
Bash find exclude caseinsenstive
I am using the below to find files with matching extensions that I need. however, I can't seem to get it to exclude certain keywords I want and also make sure keywords case insenstive...
find . -type ...
0
votes
2answers
55 views
Using a batch to sort through a complex of folders and sort any files with a specific string in their name to a specific directory?
So I have a collection of art from the internet; it is very large and spans an extreme amount of subdirectories under the main folder I keep it all under (entitled Uda). I've built up this collection ...
0
votes
0answers
70 views
C++ wstring find compilation error
I am trying to find the position of the tab character in a wstring.
However it does not work for me.
int n = wline.find(L"\t");
n is -1 although I know for sure that there is a tab character ...
0
votes
2answers
65 views
Remove empty lines from 7zip output stream in Powershell
I'm extracting .tgz archives with Powershell and 7zip. 7zip has a forced verbose mode and pollutes my screen. I just want to display the error messages. I already removed the standard messages with ...
2
votes
1answer
69 views
Recursively go through directories and files in bash + use wc
I need to go recursively through directories. First argument must be directory in which I need to start from, second argument is regex which describes name of the file.
ex. ./myscript.sh directory ...
1
vote
1answer
34 views
find with keywords but skip folders
I'm using the following command to find specific file extensions within folders,sub-sub-sub folders etc. However, it also return results if a folder/directory that has that particular keyword as well. ...
0
votes
1answer
192 views
Batch file to find file, and copy paste it to another location
needing help with batch file.
What I need: to find exact called file (for example from C: drive) and copy paste it to another location on same disk.
Example: I need to find file called "textfile.txt" ...
0
votes
3answers
50 views
Cannot make a simple query in MongoDB (AND OR NOT)
Given a collection like:
> db.test.find({}, {_id:0})
{ "name" : "star wars I", "duration" : 120 }
{ "name" : "star wars II", "duration" : 125 }
{ "name" : "star wars III", "duration" : 135 }
{ ...
1
vote
3answers
78 views
bash - What is the best way to count find-results?
My current solution would be find <expr> -exec printf '.' \; | wc -c, but this takes far too long when there are more than 10000 results. Is there no faster/better way to do this?
...
0
votes
1answer
14 views
renaming directories based on a pattern
I'm currently trying to rename all directories containing 123 to 321.
For example, if I have a directory called test123test, I would like to rename it to test321test.
So far, I have something which ...
1
vote
1answer
36 views
Trouble combining checkboxes with this find function
I'm having trouble getting this find function to work properly with checkboxes. I wasn't able to select any checkboxes and was therefore told to remove the statement return false; I'm not sure if ...
0
votes
1answer
29 views
Revert to show all when all filters are removed
How can I get this function to revert to showing everything when all the filters are removed?
I've tried changing if (attrColor == 'All') {...} to if (attrColor == 'All' || attrColor == '') {...}
...
1
vote
2answers
122 views
How to find files with specific case-insensitive extension names in Python [duplicate]
glob.glob() is case-sensitive.
Is there any simple way to find files with specific case-insensitive extension names in Python.
2
votes
1answer
124 views
Modify function to filter by several data-attributes simultaneously
The function below allows users to filter products by data-attributes, and accommodates filtering by multiple values simultaneously. It does this by creating an array of the values selected, and when ...
2
votes
3answers
25 views
Access once to the child and then reuse the parent in jQuery (1.9.x and more)
I'm looking a better to do this job, I would like to fill the caption of the image clicked, and I am sure there is a better solution.
Thanks for your answers,
Allan.
(fr)
Jquery is :
$bImg
...
0
votes
3answers
141 views
How do you find greatest number among 5 with vb.net?
This is code for finding maximum in 3 but i want the code for finding maximum amoung 5:
Dim a, b, c As Integer
a = InputBox("enter 1st no.")
b = InputBox("enter 2nd no.")
c = InputBox("enter 3rd ...
1
vote
1answer
43 views
How to make find return the target of a symbolic link in hpux?
I want to execute the find command but I want it to return the target instead of the symbolic link itselft.
Is that possible to do in HP-UX?
For example, with:
security -> ...
0
votes
1answer
55 views
How to call on next page through readmore link
I'm using this script in php. I have successfully added the readmore option but i want any user that clicks on this link will then open up a new page with the full article and with gallery pictures. ...
1
vote
2answers
270 views
PHP Simple HTML Dom Parser find() crashing while traversing past a null element
I'm trying to chain Simple HTML DOM Parser find() to traverse through HTML, however it seems to crash when one of the children is absent. For example:
$obj = $page->find('#headings', ...
1
vote
2answers
49 views
Find and basename not playing nicely
I want to echo out the filename portion of a find on the linux commandline. I've tried to use the following:
find www/*.html -type f -exec sh -c "echo $(basename {})" \;
and
find www/*.html -type ...
0
votes
0answers
108 views
Rows find not working
Please forgive me if my lingo becomes very "ad-lib", I haven't been using VB.net for very long.
My issue is, the following piece of code does not work:
Dim foundRow As DataRow
foundRow = ...
0
votes
1answer
32 views
Checkboxes not accepting input when combined with this find function
These checkboxes stop accepting any input when combined with the function below. I've posted a fiddle demonstrating the problem here: http://jsfiddle.net/chayacooper/WZpMh/32/
HTML
<ul ...
2
votes
1answer
100 views
Modify this find function to accommodate more than one value
This function allows users to filter products by color (using data-attributes). How can I modify it to accommodate more than one value?
I'd like the function to return all items matching any of the ...
0
votes
1answer
88 views
use jquery to find any character and remove it
I have a website in drupal. There is seems to problem with it. Before the end of body tag a digit appears 9. So I need to remove that through jQuery.
I know there is find() method in jQuery but is ...
0
votes
1answer
38 views
C# combined Find()
Is it possible to do something like below?
Interaction interaction=interactions.Find(i=>i.day==action.day,i=>i.scene==action.scene);
2
votes
1answer
39 views
find a letters in a string from table is only working with the first item
hi i cannot explain it without the lua code
the problem is that its just catch the first item of the table
if i wrote te = "f... you" it will return true , but if i've wrote , te = "a.." it'll return ...
0
votes
1answer
103 views
Recursive find in Windows [closed]
I am looking for a program that searches strings recursively in all the files of a directory tree. I saw there is the "findstr" command, but I would like something more powerful (with some directories ...
0
votes
1answer
72 views
Combining several find() functions to show results matching all specified filters
I'm trying to combine several find functions in order to filter items by more than one data-attribute. I'd like it to return all items matching any of the filters and revert to the stricter criteria ...
0
votes
0answers
64 views
cakephp where conditions result array bugged
I am stuck on a weird behavior of cakePHP.
When I made a find('all'); with conditions if I take two conditions that recovers each others, my array grouped the results...
Example: First request
...
0
votes
0answers
23 views
how to add int to existing file?
I am trying to search and find "{" bracket from a text file and add a number right after it. For example: If first bracket is found in the file, add "1" right after the first bracket, add "2" right ...






