Hi,
I'm trying to understand the behaviour of the following code.
<list question>
/ items = ("2 + 2 = ")
</list>
<list answer>
/items = ("4")
</list>
<textbox question>
/caption = "<%list.question.item(1)%>"
/correctresponse = ("<%list.answer.item(1)%>")
</textbox>
<surveypage test>
/questions = [1=question]
</surveypage>
<block test>
/ trials = [1=test]
</block>
When trying to implement a routine that requires string matching what is best practice?
Thanks