Click here to Skip to main content
15,903,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Need to find a way so that i could show < exp2://Ticket/18918617> in the html pages.
It is not able to show the string above.
Any HTML or Javascript function to show the string mentioned.

I have added a space < exp2://Ticket/18918617> else it will not be shown in the question itself.

Thanks.
Posted
Comments
Richard MacCutchan 28-Oct-14 10:02am    
You need to convert your < and > characters to their literal counterparts &lt; and &gt;

The term you're looking for is HTML encoding[^].

For example, that string should be encoded as:
HTML
&lt;exp2://Ticket/18918617&gt;


There are a lot of characters which need to be encoded, so don't try rolling your own function. Most languages will provide a standard method to encode a string. For example:
JavaScript
// Using jQuery:
function htmlEncode(value){
  return $('<div/>').text(value).html();
}

// Without jQuery:
function htmlEncode( html ) {
   return document.createElement('div')
      .appendChild( document.createTextNode( html ) )
      .parentNode.innerHTML;
}

http://stackoverflow.com/questions/1219860/html-encoding-in-javascript-jquery[^]
 
Share this answer
 
Comments
raghunath sahoo 28-Oct-14 10:35am    
Project:<exp2: ticket="" 18918617="">
Here I need to show the Project in the bold. It is not happening?
Richard Deeming 28-Oct-14 10:39am    
Only HTML-encode the parts that are text - don't try to encode the parts which are HTML:
Project: <b>&lt;exp2://Ticket//18918617&gt;</b>
Project: <exp2://Ticket//18918617>
raghunath sahoo 28-Oct-14 10:35am    
Project:< exp2://Ticket/18918617>
You have to use the HTML entity codes for special html characters:
HTML
&lt;exp2://Ticket/18918617&gt;


Here you can find a list of more html entities: http://dev.w3.org/html5/html-author/charref[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900