How to grab the first url from a list urls and copy to clipboard in automator

229 Views Asked by At

I am trying to setup an automator workflow. It gets to the point where automator extracts two URLS from the clipboard text and i can see them listed one after the other in the results window - Great - now i just want to copy the first url that it returns to the clipboard -

http://www.amazon
http://www.imageurl

would i use apple script? I can't find the answer anywhere .. please be explicit in your response i am only one hour into automation and apple scripting.

Thanks

2

There are 2 best solutions below

0
On

Try this:

on run {input, parameters}
    return first paragraph of (input as text)
end run
0
On

Or try this:

on run {input, parameters}
    set the clipboard to first item of input
end run

Greetings, Michael / Hamburg