#Risk at meet the deadline# -----------------------------------------------

#Risk at meet the deadline#
-----------------------------------------------------

Hi all,
it is very important and because of this, my application is not going in signOff.

i am doing pdf conversion of email template, in this email template some images are there and after conversion these images come as dummy image in converted pdf and some time i am getting some special character in converted pdf .

please help me to come out from below problem:-
1. to remove the <img tag from email template in process model
2.Sometimes the whole content of the pdf becomes blue.
3. to remove the special character also.

Discription:-
------------------
we are converting email template, two times. 1st at the time of request initiation and 2nd at time of request completion. In both time i am using email template, which have some format and i want the same format in converted pdf.
i am getting above problem in converted pdf.

your every suggestion will be valuable...

OriginalPostID-216518

OriginalPostID-216518

  Discussion posts and replies are publicly visible

Parents
  • Substitute looks for a string or strings within the text and replaces it with the string that you supply, i.e. substitute ( text, find, replace_with ). It could look something like substitute(pv!htmlText,"<img","<br>"). Though this is probably not exactly what you need. Did stripHtml not help either?
    forum.appian.com/.../Text_Functions.html

    You could use search() and find(), the former being case-insensitive and the latter case sensitive, to find locations in the text, but this might not accomplish what you need in a simple manner. An idea could be to use split() and then remove the artifact pieces in between (the contents of the <img tag), but I wouldn't be able to say much more without seeing what the html looks like that you need to clean up.
Reply
  • Substitute looks for a string or strings within the text and replaces it with the string that you supply, i.e. substitute ( text, find, replace_with ). It could look something like substitute(pv!htmlText,"<img","<br>"). Though this is probably not exactly what you need. Did stripHtml not help either?
    forum.appian.com/.../Text_Functions.html

    You could use search() and find(), the former being case-insensitive and the latter case sensitive, to find locations in the text, but this might not accomplish what you need in a simple manner. An idea could be to use split() and then remove the artifact pieces in between (the contents of the <img tag), but I wouldn't be able to say much more without seeing what the html looks like that you need to clean up.
Children
No Data