Borrar filtros
Borrar filtros

Replace invalid characters from HTML file with valid ones and save the file.

1 visualización (últimos 30 días)
Hi all,
I am currently working on a script for editing the html file. (MATLAB 2013b)
The HTML file has some invalid characters like m³. And I want replace these characters e.g. m³ to m3.
I am able to read the html file as a cell of 4405x1 cell. Here, I am not able to use strrep command. Following is the code:
fid = fopen('C0TH_Doc_main.html','r');
MyText = textscan(fid,'%s','delimiter','\n');
strrep(MyText, 'm³', 'm3');
% rewrite the file
fid = fopen('C0TH_Doc_main.html','wt');
fprintf(fid,'%s\n',MyText);
fclose(fid);
Following is error screenshot
2020-01-30 11_06_38-MATLAB R2013b.jpg
Once all the characters are replaced, I want to preferably save it to the same HTML file or atleast wirte it into a new txt file.
Please provide any hints or other ways to complete this task.
Thank you in Advance

Respuesta aceptada

Walter Roberson
Walter Roberson el 30 de En. de 2020
MyText = strrep(MyText{1}, 'm³', 'm3');
  2 comentarios
Onkar Vader
Onkar Vader el 30 de En. de 2020
Thank you Mr. Roberson. It worked.
Further to write into an HTML file I used following code. Perhaps in future this will helpe someone. Following is the complete code:
2020-01-30 14_02_55-Editor - C__OnkarVader_C0_ASW_Work_C0_C0TH_TlAutoDocSkripts_CleanInvalidChar.m.jpg
Walter Roberson
Walter Roberson el 30 de En. de 2020
By the way you could consider using regexprep to do all the replacements in one call.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Productos


Versión

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by