Asked By
kim kim
0 points
N/A
Posted on - 04/18/2013
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.
Covert FTP URL into html link
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.
Covert FTP URL into html link
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!