Covert FTP URL into html link

Asked By 0 points N/A Posted on -
qa-featured

Hi expert,

I need a help. I want to convert FTP URLs into html link.

So, I need a converter to do this work. Is there a specific converter to convert this?

If you know please send the download link.

And send some helping tutorial explanations for how to use that software and explain other Special features, Main advantages and disadvantages.

SHARE
Best Answer by Jose D Dunn
Answered By 65 points N/A #167165

Covert FTP URL into html link

qa-featured

Hello,

This can be done but there are many processes that need to be done. HTML and CSS are not enough to do the job. One needs server side programming language which will read from entries and go on searching for a URL and replacing them with the full HTML URL <a> tag.

Best Answer
Best Answer
Answered By 10 points N/A #167163

Covert FTP URL into html link

qa-featured

Greetings Kim!

If you want to convert FTP URLs to html link, I don't think there are converter of this kind but I can give you a link related to your problem. I think it will be a code or a script to make this possible. Here is the script:

Function replaceURLWithHTMLLinks (text) {

  var exp = /(b(https?|ftp|file):VV[-A-Z0-9+&@#V%?=-_|!:,.;]*[A-Z(-9+&@#V%=-_|])/ig;

  Return to text. Replaces (exp,"<a href='$1'>$1</a>");

}

Or visit this link for more information.

I hope this will help you solve your problem.

Have a nice day!

Related Questions