This tag has multiple meanings. Please DO NOT use this tag if you're just trying to find something.
1
vote
2answers
280 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
52 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
111 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
93 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
40 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
123 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
74 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
68 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 ...
0
votes
1answer
49 views
Find iPhone devices/device tokens in specific radius :-
I want to find iPhone devices/device tokens within a specific radius from particular location.
For example : Within a 25 K.M. of radius from Sydney,i want to get iPhone devices tokens.
I am ...
0
votes
2answers
151 views
How to remove multiple lines in multiple files on Linux using bash
I am trying to remove 2 lines from all my Javascript files on my Linux shared hosting. I wanted to do this without writing a script as I know this should be possible with sed. My current attempt looks ...
1
vote
3answers
94 views
Getting prop('tagName') problems in jQuery
Having a bit of trouble with some strange setups I encountered while working on a bookmarklet for work purposes. I need it to be able to find all the video embeds on a page and process the information ...
0
votes
1answer
61 views
How to check if character in string is a word character ? Python
So I know about islower and isupper, but i can't seem to find out if you can check whether or not that character is a word character ?
Example:
s = 'abcdefg'
s2 = '123abcd'
s3 = 'abcDEFG'
...
-1
votes
1answer
47 views
How to choose between two values using 'or' in matlab?
I have the following code :
a = cell(4,1);
a{1} = [5 3 0 0];
a{2} = [0 3 5 0];
a{3} = [1 3 0 0];
a{4} = [0 3 2 0];
arrayind = 2;
b = a(cellfun(@(x)x(arrayind) == 1,a));
b{:}
How can I achieve ...
0
votes
1answer
42 views
Command to get list of files with “.log” extension and “JB_” in name and “ERROR:” in the body of log file(not name of log file) in UNIX
I tried this below command
ls -1 /fbrms01/dev/Logs/JB_*.log | find . -type f | xargs grep -l "ERROR:" > /fbrms01/dev/Logs/text_JB.txt
for these below files
...
0
votes
3answers
127 views
How do I replace NA in one column if another column's value is greater than 0?
I have 8 census lines (L1:L8). Currently some of the records have NA rather than 0 when they have been censused. I would like to replace all NA with 0 in each of the columns (L1:L8) when their ...
-1
votes
1answer
96 views
How to replace a value in multiple columns based on criteria?
I would like to replace all values 99 with NA for all records where ART == '999' only in columns L1:L8. I know how to do this for once column at a time, but I would like to do this more efficiently ...
0
votes
2answers
119 views
PHP search through SQL
Hello i am trying to organize this into a table with its own column but every time i try i get something really messy or completely wrong if i could get some help on implementing a table from the sql ...
0
votes
2answers
102 views
matlab - find index for when values exceeds a threshold n number of times
I would like to find the index for when an array exceeds a certain value, and this value is value is exceeded for a duration, n. For examples:
n = 5;
dat = [1,2,2,1.5,2,4,2,1,1,3,4,6,8,4,9];
Here, ...
1
vote
2answers
35 views
BASH find -name (read variable)
I'm new to bash and have encountered a problem i can't solve. The issue is i need to use find -name with a name defined as a variable. Part of the script:
read MYNAME
find -name $MYNAME
But when i ...
1
vote
3answers
187 views
jquery If element id is similar to other element then add class
I've been racking my brain over this one the past few days and i'm hoping someone can help.
Basically here's what I have...
<div id="ORDER/SUB/DD" class="box1">content</div>
<div ...
1
vote
1answer
94 views
unix find command with mtime - unexpected result
Sorry, annoying little question which no-one in my office seems able to answer...
The following command on our Linux system (ksh):
find . -mtime -3 -exec ls -lrt {} \;
...I would expect to list ...
0
votes
3answers
124 views
Find not existing values in excel between two columns [closed]
I have two columns, let's say A1 - search value and column C1:C100, I need to find out if A1 Value exists in C1:C100 what command or how could I do that?
0
votes
3answers
82 views
Passing More than one where condition in MONGO DB find query
I am having mongo DB collection namely student with the following document structure,
name:details:date:values
so, for an single name we will have one details list,
That details list will have ...
0
votes
2answers
56 views
hash_map< vector<int>, int> error when using find function
struct HASH_CMP {
bool operator()(vector<int> V, vector<int> W) const {
for(int i = 0; i < 10; i++)
if(V[i] != W[i]) return false;
return true;
}
};
...
2
votes
2answers
234 views
Matlab, find index of minimum value with the condition that it must be negative
In a given array, I need to find the index of the minimum value in an array, but only if it is negative.
For example : [1, 2, 3, 4] would return no indices
and [1, 4, -7, -2] would return 3
I was ...
0
votes
2answers
42 views
findnext() method in xml document
one more question about xml document. so, i want to find messages by message body (text) and i wrote find() method:
public void find(string searchText)
{
XmlNodeList smss = ...
0
votes
1answer
66 views
Mix :select with :include in find method (Rails 2)
I have 2 models, User and UserProfile. A user has_one user_profile and a user_profile belongs_to user.
1) Find without select
This query in console works fine, and take only 2 SQL queries.
>> ...
0
votes
2answers
32 views
How can I compile all files in all subdirectories using find?
I have lots of c++ programs that are unrelated to each other and each one being in only one file. Directory structure looks like this:
dir1
program1.cpp
program1.h
program2.cpp
...
0
votes
0answers
198 views
vba read csv file and search in other csv file
I have an input.csv file with the following data
apple, red,
apple, green,
apple, greenred,
Then there is a datafile.csv with a lot of data
fruit, color, place, packaging
pear, red, shelf, box
...
2
votes
1answer
85 views
jquery getting id and appending .html & toggleClass
Im new to jquery and would be happy to get some tipps on this. I have a couple of links and I want to load their content to my #content div. I don't use a href so I want to load the id and append ...
0
votes
2answers
60 views
find() after replaceWith() doesn't work (using BeautifulSoup)
Please consider the following python session:
>>> from BeautifulSoup import BeautifulSoup
>>> s = BeautifulSoup("<p>This <i>is</i> a ...
1
vote
2answers
46 views
How to search for string in files whose name contains another string and are created in last 7 days in linux?
I'd like to search for string in files whose name contains another string and are created in last 7 days,
I tried:
find . -type f -name '*name_string*' -mtime -7 | grep -ir '*mytext*'
But it ...
1
vote
2answers
90 views
Javascript/jQuery - Need to find raw text on the page, capture what follows into variable, and replace original with HTML
So let’s say the text KEYWORDANIMAL:(Cat) appears on a page. I want to search through the page for all instances of KEYWORDANIMAL, and then pull the actual animal, in this case Cat, into a variable to ...
0
votes
1answer
385 views
Bash Script: Find and Remove Folders Older Than 7 Days, With File That Does NOT Contain a Certain String
I need to come up with a Bash script that will remove any folders within a directory if they meet both of the following criteria:
Older than 7 days.
Have an xml file in them that does not contain a ...
0
votes
2answers
110 views
Find/Match variable filenames and move files to respective directory
I've never come to SO asking "Do my homework" but I really don't know where to start with this one.
I have a load of documents which are dumped in a directory after being auto-signed using JSignPdf ...
1
vote
5answers
62 views
How to find array in array and remove it?
var arr = [["test","1"],["demo","2"]];
// $.inArray() ???
// .splice() ???
// $.each() ???
$("code").html(JSON.stringify(arr));
If I will find matching array by "test" (unique) keyword , I will ...
1
vote
3answers
58 views
find inside Python subprocess returns 1
I need to search the contents of a directory with the following GNU find command:
find path -type f -name file1 -o -name file2 -o -name file3
When I execute this command in my Linux shell, the ...
0
votes
1answer
83 views
call to member function find() on non-object in PHP? [closed]
I am using dom() to parse the content from HTML. Basically inside tag <img class="logo">.
I am using $this->dom->find('img[class=logo]') to get the value.
But while doing this, sometimes ...
0
votes
1answer
55 views
Using find and grep to Mimic findstr Command [closed]
I recently switched from a Windows development environment to an Apple development environment. The move has been a challenging process, but I'm struggling with picking up UNIX based commands in ...
1
vote
3answers
61 views
Finding image url via using Regex
Any working Regex to find image url ?
Example :
var reg = /^url\(|url\(".*"\)|\)$/;
var string = 'url("http://domain.com/randompath/random4509324041123213.jpg")';
var string2 = ...
0
votes
2answers
102 views
Regex to find image src/path from attribute
if my html is
<div style="background-image: url(http://domain.com/randompath/random4509324041123213.jpg);"></div>
And I get style attribute like..
var img_src = ...
2
votes
1answer
76 views
live find in jQuery
I use the find method in jQuery to find a specific box on the page.
I have other buttons that create new boxes without page-refresh. These new boxes are then NOT found with find, which is a problem.
...
1
vote
2answers
85 views
vector<double> find double within tolerance level
I have a
std::vector<double> v;
I'm looking to detect the presence of a real value in it, up to a error tolerance level of say
1e-6;
The documentation indicates the operator== is used to ...
0
votes
2answers
53 views
Linux command find usage confuse [closed]
Today when I was using the "find" command. It is a little bit confusing on the usage.
The problem: I want to count how many gz files under the main directory. However, the main dir also have sub ...
0
votes
1answer
66 views
Cannot find module 'connect' on Mac OS X Lion
I installed connect module using NPM running the following command:
npm install connect
it created the module in /Download/usr/node_modules/connect folder. I created a file which
uses connect ...
0
votes
0answers
11 views
Observe what command is run
I have two unrelated Windows applications. Aplication A which can cause another application B to open in a certain state. How can I find the command which A runs/sends to make Windows start B in that ...



