Log in

View Full Version : Wild Cards for extracting table data?


4x4 Mecca
08-31-2007, 05:30 AM
I'm using a mod that is called "Extra Thread Fields", what it does is creates tables withing the thread table.

For example, I have thread.field1, thread.field2, thread.field3 and so on. What I'd like to do is is a conditional based on if some text is found with in the field.

For example, if field2 has the information "mud, water, sand, snow" and I want to use a conditional to find out if field2 has the word sand in it, can I do anything like this?

<if condition="$thread[field2] == *sand*">I have sand!</if>
or <if condition="$thread[field2] == %sand%">I have sand!</if>
or <if condition="$thread[field2] == sand">I have sand!</if>

You can see that I want to find out if there is a text string withing the field. Is this possible?

Dismounted
08-31-2007, 10:45 AM
You'll have to use regex for this.