Get a value between 2 tags in a string???

  • Thread starter Thread starter DaveF
  • Start date Start date
D

DaveF

I have a string like: [~tag~]Value I need[~/tag~]

basically I need to replave that string with: <a href="TheLink.aspx">Value I
need </a>
 
OK, looks like I didn't read properly, sorry.

Do you want [~tag~] to become <a href="TheLink.aspx"> and [~/tag~] to
become </a>? Are you after string functions that do replacement? Is that on
client or server side? What language are you using?

Eliyahu

DaveF said:
???

--


Dave

Eliyahu Goldin said:
Why not to use element properties, whether on client or server site?

Eliyahu

DaveF said:
I have a string like: [~tag~]Value I need[~/tag~]

basically I need to replave that string with: <a
href="TheLink.aspx">Value
I
need </a>
 
Back
Top