Searching for multiple words using TextPad [closed] - textpad

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need to find a list of files that contain 2 different words. For example, I need to search for a list of files from a folder that contain the word "Balloon" and then from the result, need to search for files that contain the word "burst".
Is it possible to do this using Textpad?

Edited answer because I see what you want is, in effect, to find any file with both balloon and burst in. You can simply use balloon.*burst (or balloon.+burst if you don't want to match balloonburst in the file):
Don't forget to search In all documents - and my advice would be to hit Mark All to show the results. Bearing in mind you'd need to open these files in TextPad first.

Related

How to find and replace string in multiple word (.docx) files using R programming without changing it's original format [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have many word document files in which i need to change few letters which are common in all files. I want to make a Script for replacing the text in all files once. I am using windows machine and R is installed. Suggest me even if you have any other way of doing it.
This files are microsoft word document files and stored in one folder. I have code which get data into R list and find and replace the text. But it creates the file with changed format.
Please suggest me a better way.
I think you are asking if a package exists that can deal with MS Word file? Yes. It does. It is on CRAN: https://cran.r-project.org/web/packages/officer/index.html.

How to download latest file from FTP when the name of the files do not contain the date [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Using R, I need to download the latest file from ftp.nhc.noaa.gov/atcf/fst I need to download the most recent file uploaded.
I don't want to download the entire list of file and check the dates and the files do not contain the date in their names.
These are the list of files. Need some guidance on how to do with R.
Thank you

R if statement about a web page [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I know I can open a web page from R using "shell.exec".
But I want to write a loop that opens the webpage only if the webpage
maintains a condition, for a collection of websites.
It's a collection of websites that have "value=somenumber" in their address,
and I want R to open only those that "somenumber" actually have some data.
Numbers that don't have data don't return an error page, but just a page with no data.
The thing is, it's involving like html elements that I need to write in the condition...
is such thing possible?
I would use the stringr library's str_detect
http://cran.r-project.org/web/packages/stringr/stringr.pdf#page.7
Assuming you have a list of the urls. I would just pass that list to the function and if it returns true then do your thing.
str_detect(urlList,"value=[:digit:]")
Here's an approach that uses the more portable browseURL and grep:
x <- readLines(n=3)
http://stackoverflow.com/questions/23840523/check-if-os-is-solaris
http://stackoverflow.com/questions/23817341/faster-i-j-matrix-cell-fill
http://stackoverflow.com/questions/7863710/correlating-word-proximity
sapply(grep("/238", x, value=TRUE), browseURL)

Where does Alfresco Share store it's data list entries [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Where exactly does Alfresco Share store it's data list entries? Somewhere in the file system or in the database?
Datalists are modeled as their own Alfresco content types (defined in datalistModel.xml) and stored in the database. Only files are stored in the file system (contentStore) in Alfresco.
Well, I found a database table called alf_content_url containing an url to the repository:
store://2012/9/24/22/58/e9d360e5-9292-4e8c-9cd4-8fe2e6724a45.bin
and the file itself exists in the file system containing all entries of one data list in one binary file:
alfresco-4.0.e/alf_data/contentstore/2012/9/24/22/58/e9d360e5-9292-4e8c-9cd4-8fe2e6724a45.bin

Maximum Number of Folders Windows Server [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm building a site(asp.net) that needs save images for each product, so I'm not sure how implement it. I think i can do it saving all photos in the same folder but i do not like that i would prefer to create a new subfolder for each product and save the images in that subfolder but maybe in the future i have problems due to limitations with number of folders or subfolders.
Do you think that second option (creating subfolders) is better and secure?
You can see in the following link the limits of windows file system
http://technet.microsoft.com/en-gb/library/bb457112.aspx
taken from
https://serverfault.com/questions/18692/what-is-the-maximum-number-of-files-or-folders-that-can-be-stored-in-a-single
the limits of files and sub folders changed depending the kind of server/netapp.
you can read in the link above the limits for each one.
I would use subfolders but it is up to you, the important thing is that you need to know the limits and then decide.

Resources