find

How to find the position or location of string in given document.

How to find the position or location of string in given document.I have one word document and i want to store all its words and word positions in database so thats why i need to find the position of the words. so please tell me how can i find position or location of word or string in given document. Thanks in Advance. Dhiraj ...

JQuery finding an element within Iframe (by its text) and adding .click function to it

Hello, I have a webpage (A) and I am embedding (A) to my mainpage (B) using iframe. This (A) contains a link which closes the browser window: <a href="" onclick="window.opener = window; window.close(); return false;">Close The Page</a> Since I embedd (A), the close ability in (A) is no more functional. What I need to do is, w...

Word VBA - Find text between delimiters and convert to lower case

I would like to find text which is between the < and > characters, and then turn any found text into "normal" case, where first letter of word is capitalized. Here is what I have thus far: Function findTextBetweenCarots() As String Dim strText As String With Selection .Find.Text = "<" ' what about <[^0-9]+> ? .Find.Forward =...

Where to patch Rails ActiveRecord::find() to first check collections in memory?

For somewhat complicated reasons, I would like to create something that works like this: # Controller: @comments = @page.comments # comments are threaded # child comments still belong to @page ... # View: @comments.each_root { display @comment { indent & recurse on @comment.children } } # alternatives for how recursion call m...

find icon for .exe

I have the path name to a .exe file. How do I find the path to the icon that windows would use if this file were dropped on the desktop? (I want to display this icon in my own program.) I need to be able to find the icon via my C# program at runtime. Using C# in Visual Studio 2008. ...

c++ vectors - Using find(begin, end, term)

Ok, i'm doing this and it works fine. end = std::find(arToken.begin() + nStart, arToken.end(), "."); I want to extend the . to include ! and ? so it finds periods(.), exclamation mark(!), and question mark(?). Should i use regex in the term? TIA ...

How to find static method calls in large Java project?

I'm refactoring some Java code to be more decoupled by changing some static method calls to non-static calls, for example: // Before: DAO.doSomething(dataSource, arg1, ..., argN) // After: dao.doSomething(arg1, ..., argN) My problem is that in a large project, it can be hard to find where static method calls are being made. Is there ...

C# List.Find method - how can I pass a value into the predicate??

Hi, I can't work out how to do a "find" on a List I have based on use of a value that I'll pass in at run time. If you see my below code, I want to be able to find the CustomClass in the List for which it's Path parameter is equal to X, where X will be defined at run time. Any ideas how to do such a find on a List? Or is this not po...

Length of an Array in Objective C

I haven't found answer in any of the questions asked. I am passing an Integer Array to a function.Now I want to traverse through the array.But as things worked in C,C++ by simple using arrayname.length which gave the number of elements in array. What is the way to find that? [NSArrayObject length] works for NSArray type but I want it for...

detecting the start of a loop in a singly linked link list?

Is there any way of finding out the start of a loop in a link list using not more than two pointers? I do not want to visit every node and mark it seen and reporting the first node already been seen.Is there any other way to do this? ...

CString extract file path

Hey I'm trying to extract the file path but the problem is that I'm stuck in an infinite loop don't understand why. Please have a look at my code. CString myString(_T("C:\\Documents and Settings\\admin\\Desktop\\Elite\\Elite\\IvrEngine\\dxxxB1C1.log")); int pos = myString.Find(_T("\\")); while (pos != -1) { pos = myString.Find(_T(...

Need to use jQuery.find to find element with specific style

Right... I need to find all < ul style="display: block;"> elements, so that I can set it do display:none. I think I'm on the right path here... but not quite there: jQuery('#adminMenu li').find("ul").css('display'); For advance users: how can I find and change the style with one line? ...

jQuery .find() in server response

I am trying to get the text inside a specific div in a server response. I used Firebug to see what the response was, and I can see my element in the returned code, but for some reason I can get jQuery to capture it. Here is what I am using: var response = $('<div />').html(serverData); $('#uploadedFiles').html($(response).find("#creat...

Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY

greetings, I'm new with java script so bear with me! I want to achieve something using JQuery selectors. I have a list menu. It looks like this... <ul style="width:auto"> <li>item one</li> <li>item two</li> <li>item three</li> <li>item four</li> <li>item five</li> </ul> Okay, so currently I'm using the parseInt function to retrieve...

How to find and replace all occurrences of a string recursively in a directory tree?

Using just grep and sed, how do I replace all occurrences of: a.example.com with b.example.com within a text file under the /home/user/ directory tree recursively finding and replacing all occurrences in all files in sub-directories as well. ...

Shell Scripting: Using bash with xargs

I'm trying to write a bash command that will delete all files matching a specific pattern - in this case, it's all of the old vmware log files that have built up. I've tried this command: find . -name vmware-*.log | xargs rm However, when I run the command, it chokes up on all of the folders that have spaces in their names. Is there ...

Sending a code block to a find_all dynamic method

I'm working with some complex queries using the dynamic find_all method and reached to a point where sending a block to that find_all method would really simplify my code. Is there any plugin or work in-progress dealing with this? In simple terms, I'd like to do something like: @products = Product.find_all_by_ids(ids, .....) do |p| ...

How can I use FIND to recursively backup multiple subversion repositories

At the moment our backup script explicitly runs svnadmin hotcopy on each of our repositories every night. Our repos are all stored under a parent directory (/usr/local/svn/repos) Our backup script has a line for each of the repos under that directory along the lines of: svnadmin hotcopy /usr/local/svn/repos/myrepo1 /usr/local/backup/myre...

Multi grep to 1 grep? Should i change it and how do i?

This is my final script find -regex "^\..*[^(~$|\.o$|\.exe)]" | grep -v "\.svn" | grep -v ".tab." | grep -v ".yy." | xargs svn add 2>/dev/null For testing i dont want to add it to svn so i use find -regex "^\..*[^(~$|\.o$|\.exe)]" | grep -v "\.svn" | grep -v ".tab." | grep -v ".yy." NOTE: I wanted to ignore files that started wit...

Using Python, how do I get an array of file info objects, based on a search of a file system?

Currently I have a bash script which runs the find command, like so: find /storage/disk-1/Media/Video/TV -name *.avi -mtime -7 This gets a list of TV shows that were added to my system in the last 7 days. I then go on to create some symbolic links so I can get to my newest TV shows. I'm looking to re-code this in Python, but I have a...