How do I turn a list of multiple urls into links or hyperlinks?

Discussion in 'HTML & Website Design' started by Toro05, Mar 21, 2009.

  1. #1
    Hello. Is there an easy way to turn a list of multiple urls into links or hyperlinks?
     
    Toro05, Mar 21, 2009 IP
  2. andy10k

    andy10k Peon

    Messages:
    27
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you only need to change your list into urls the once, then you could use excel. Import everything into excel with your urls in a column. Add the html code to the colums before and after and then combine all the text into one column. I think the name of the function is "concetanate" or something similar.

    If you are going to keep adding to your list of urls, then keep them in a seperate text file and use an array to call them through one at a time.
     
    andy10k, Mar 22, 2009 IP
  3. Toro05

    Toro05 Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thank you Andy!
     
    Toro05, Mar 23, 2009 IP
  4. copy4wealth

    copy4wealth Peon

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You could also use word...

    record a macro for the how you convert each URL into a link...

    Play the macro to do the rest of the URL's
     
    copy4wealth, Mar 23, 2009 IP
  5. manis

    manis Well-Known Member

    Messages:
    530
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    108
    #5
    copy4wealth, thanks for the tips, i have tried - it's working.
     
    manis, Mar 23, 2009 IP
  6. ClassHelper.org

    ClassHelper.org Guest

    Messages:
    273
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #6
    If you're going to be processing a lot of lists, you could always write a simple Perl or PHP script to split the URL lists on whatever character is used to delimit them; you can then just loop through the resulting array and do whatever you want with the URLs (write out a file, wrap them in HTML tags, etc).
     
    ClassHelper.org, Mar 23, 2009 IP