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 am trying to manage a set of documents with Google Sheets.
I tried service like Evernote but I prefer displaying those document in a table form.
If the documents are Google docs, you can attach the internet address of the Google doc in the sheet.
what do you mean by attach? I mean, what behavior do you expect?
Anyway, the only way I think is to upload this document, if it's not already an online document, you want to attach to somewhere online accessible, e.g. your Google Docs, and place the document link on a cell.
Related
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 1 year ago.
Improve this question
In Google Sheets:
I would like to trim a list of urls to first folder
for example:
url.com/folder1/xxx/index.html
url.com/folder2/
url.com/folder3/xxx/yyyy/index.html
url.com/folder4/zzz/aaa/bbb/index.html
Output should look like this:
url.com/folder1/
url.com/folder2/
url.com/folder3/
url.com/folder4/
I need to find a formula I can use in Google Sheets, which easily takes care of this all at once for at least 10,000 urls?
I found this tool https://regex101.com/r/aS7zX3/3
However, it does not work when you enter more than 1000 urls.
Any help would be much appreciated. Thanks!
NEW answer because you comment "the case when the url is "es-la.domain.com/peter.75054" "
With this formula everything is correct
=ArrayFormula(IFERROR(REGEXEXTRACT(A1:A,"\w+.\w+/\w+")))
OLD answer
You think correct and have correct formula in regex101.
You can make it for Google Sheets also
=ArrayFormula(IFERROR(REGEXEXTRACT(A1:A,"^([^\/]*\/[^\/]*)")))
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
I'm wondering what's the right way to create a Google document using a Google spreadsheet as a data source. I googled for a while and the only resource I found it is this explanation (http://opensourcehacker.com/2013/01/21/script-for-generating-google-documents-from-google-spreadsheet-data-source/), with the help of a Google App Script. Is there another (easy) way?
Easy, no programming required. Check out the Google Docs add-ons, such as DocumentMerge, Smartsheet Merge, or Ultradox.
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 9 years ago.
Improve this question
I want to implement google image search in my IOS app, there would be a search bar in which user can enter anything to get images related, like mouse and this will result by giving images of mouse, then those images will be displayed in my app.
Is there any API or something else which gives google images search result.
You can send a Query to Google Servers and then you receive all information as a json file.
For more information: https://developers.google.com/image-search/v1/jsondevguide?hl=de&csw=1
This is the URL for searching for "fuzzy monkey" and returning 8 result (rsz=8)
https://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=fuzzy%20monkey&rsz=8
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 created an website. For a week I had an under-construction-page, google did find that paged and indexed it. My question is: How did google find my site, while there were no links to this site and the name has never been used before?
Your domain name went in a domain name server. Google probably found it there.
There are so many websites that automatically gather Whois information of domain names with complete information about them. If you are pretty sure that you have never shown your domain to Google, i guess these websites did this.
You browser (Chrome) or your browser's plugin might have sent an anonimous report of your browsing statistics to Google - you did open your site in a browser right?
You weren't using a robots.txt file blocking Google.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need to implement searching images in my iOS app using google search. I found google objective-c API (http://code.google.com/p/gdata-objectivec-client/). But not found examples for searching images. Maybe anyone already made something like this?
EDIT: this answer is out of context as it is for custom search rather than the general google search
This might help you:
Google Search Blog: Image results now available from the Custom Search API
Or if you want to skip the blog post completely:
Google code: JSON/Atom Custom Search API
Check out my github project https://github.com/PavelKatunin/GoogleImagesSearcher
It searches images via Google Api and presents them in UITableView.