How do I print the code for an html link to a file?

3 visualizaciones (últimos 30 días)
Trevor Fields
Trevor Fields el 5 de Jul. de 2018
Comentada: Walter Roberson el 5 de Jul. de 2018
I'm trying to write html code to a file, such that
<a href="C:\\Users\\trevor.fields\\Desktop\\HTML\\index.html">Main Page</a>
appears in the file. So far I just get a link in the command window and <a href="C in the text file. I'm using
fprintf(fileid, '<a href="C:\\Users\\trevor.fields\\Desktop\\HTML\\index.html">Main Page</a>')

Respuesta aceptada

Trevor Fields
Trevor Fields el 5 de Jul. de 2018
It interpreted \\U as an exit command, \\t as a tab, and so on. Changing each \\ in the address to / fixed the problem.
  1 comentario
Walter Roberson
Walter Roberson el 5 de Jul. de 2018
fprintf(fileid, '%s\n', '<a href="C:\\Users\\trevor.fields\\Desktop\\HTML\\index.html">Main Page</a>')
However, that is the wrong semantics for an html link. Relative links cannot start with something followed by colon, and non-relative links need to start with a known protocol type such as http: or https: or ftp: or file: .
file: needs to be followed by three forward slashes for local files; https://foswiki.org/Support/Faq72 and https://en.wikipedia.org/wiki/File_URI_scheme

Iniciar sesión para comentar.

Más respuestas (1)

Guillaume
Guillaume el 5 de Jul. de 2018
fprintf(sometext)
prints to the command window
fprintf(fileid, sometext)
prints to the file whose fileid you got from fopen. It seems you're missing that first argument.
  2 comentarios
Trevor Fields
Trevor Fields el 5 de Jul. de 2018
My bad, I just missed it in the question, not my actual code.
Walter Roberson
Walter Roberson el 5 de Jul. de 2018
The command window processes a subset of HTML to create links and a small number of other HTML behaviors.
When you write to a file, then you are just writing text, and whether the text is interpreted as creating a link depends upon the program you are using to read the text. Editors such as notepad++ and vi and the MATLAB built-in editor will not process the HTML. There are some HTML-aware editors (at least in some modes), or you could use the text with your favorite web browser... provided that you included the HTML and other appropriate headers required by HTML.

Iniciar sesión para comentar.

Categorías

Más información sobre Low-Level File I/O en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by