| Title | Under | Posted on |
|---|---|---|
| how to create application status in peoplesoft campus solutions 8.9 version | PeopleSoft Functional | 05/17/2012 - 4:09am |
| horizantal text in charts | PeopleSoft Technical | 05/10/2012 - 4:57am |
| no current buffer context error | PeopleSoft Technical | 05/10/2012 - 1:19am |
| Integration Broker : Operating Instance/Pub Contracts/Sub Contracts | PeopleSoft Technical | 04/24/2012 - 11:05am |
&str_value = Substitute(&str_value, "é", "é");
Have tried coverting the above value to é ,but SUBSTITUTE seems to be not working.Please help me.
Thanks in advance,
Raj
&str_value = Substitute(&str_value, "ASCII value", "é");
Have tried converting the above value to é ,but SUBSTITUTE seems to be not working.Please help me.
I think there is char function in PeopleCode that you can use. char(130) is your é i think. What exactly are you trying to do?
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
Hi Lepa,
I am trying to print a special character é on a HTML page.There is some stringhashtable logic in the peoplecode where all the parameters has to go in a loop and get extracted into a common string.In this scenario,the é enters into the string hash table and gets extracted as some garbled character on the html page but not as é.
So what I've tried doing was,to encode the é into its ASCII code first and then when decoding from the string hash table ,i tried decoding the ASCII code to é.But still i get the ASCII code itself on the HTML page.Please help..
Post new comment