Hello,
I’m working on SPR study, where people read texts sentence by sentence. I used the following syntax so far:
newController("DashedSentence", {s : ['This is sentence one.', 'This is the second sentence.']})
.print()
.log()
.wait()
.remove()
,
It worked well, but now I want to save the list of sentences in a CSV to create different groups and items, so something like:
newController("DashedSentence", {s : [row.text_1]})
.print()
.log()
.wait()
.remove()
,
With the content of text_1 being: ‘This is sentence one.’, ‘This is the second sentence.’
But since comma are used as separators, how do I save multiple sentences? Enclosing them all in ” caused all sentences to be displayed at once.
I would appreciate help on this.