> i have a string which includes tages like <p width =100>dd</p>
> and i want to delete al the tags but not their content
> for example if str = "<p width = 100>dd</p>"
> i want str to equal "dd"
> what is the reg expresion that i need to use
/<[^>]+?>/g

Signature
Steve
The man who says he is willing to meet you halfway is usually a poor
judge of distance. -Laurence J. Peter
Phil C. - 24 May 2005 03:54 GMT
Install Expresso from : http://www.ultrapico.com/Expresso.htm
and read the tutorial for a good lesson.
Also use expresso to test things.
>> i have a string which includes tages like <p width =100>dd</p>
>> and i want to delete al the tags but not their content
[quoted text clipped - 3 lines]
>
> /<[^>]+?>/g