Hi.
I am trying to load an article which is stored as encoded html. So basicly this line:
<p>Hello world ; : ' " ! @ # $ % ^ & * ( ) </p>
is stored as %3Cb%3EHello%20world!%20%3B%20%26%20%40%20'%3Cb%3E%0A
Using proc stream and proc sql I can retrieve the data. Now my problem is decoding the content. Obviously, I looked into HTMLDECODE
However I am having trouble getting it to work in combination with Proc stream. Here is how I retrieve it
%let GetContent =%sysfunc(dosubl(
proc sql noprint;
select M.content into :article SEPARATED by ''
from BE_TEMP.BI_ARTICLE M where M.id eq 12;
quit;
));
%let newArticle = htmldecode(&article)
&newArticle
Can anyone spot the problem?
Either use %sysfunc when you call htmldecode function or put the function inside your PROC SQL select.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.