I have custom tags [tag val=100][/tag]. How do I get val and whatever goes between the tags?
ex:
[tag val=100]apple[/tag]
value1 = 100
value2 = apple
edit: what if I had multiple items inside the tag
ex:
[tag val=100 id=3]
|
I have custom tags ex:
value1 = 100 edit: what if I had multiple items inside the tag
|
||||
|
If you have a string like that in your question, you can use
Update: I see you might have multiple attributes in each element. In that case, this should work:
|
|||||||
|
|
This would be a regular expression for it:
Val would be a number and your 'apple' can be one or more occurences of alphabetic characters. Replace |
|||
|
|
[tag val=100]fruits: [tag2]apples[/tag2] and pears[/tag]? – webbiedave Oct 4 '10 at 20:29