HTML Markup - how to use Variables from Workspace
조회 수: 4 (최근 30일)
이전 댓글 표시
I want to generate text via Markup using HTML. I want some placeholders in the text were the content of a workspacevariable is placed. Is that possible?
Thats my code for example:
%%
%
% <html>
% <body>
% The volume of a box is [content of my string test1].
% </body>
% </html>
%
In my workspace:
test1 = "5.3"
댓글 수: 0
답변 (1개)
Harald
2023년 7월 27일
Hi Pascal,
is my understanding correct that the HTML code is stored in a file and that it includes placeholders, and that you are asking how to populate the place holder?
If so, I would use fileread to read the entire file and replace to replace the placeholder with the content of the variable. If you have multiple placeholders, I recommend using structs to store the multiple variables and not overcrowd the workspace.
Best wishes,
Harald
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!