extractanswers() Function

Returns an array of strings that respond to the questions provided. The expected format of the question and answer text is the format returned by insertquestions()

Syntax

extractanswers( questions, text )

questions: (Text Array) Array of questions.

text: (Text) Text representing the questions and answers.

Returns

Text Array

Examples

extractanswers({"What is your name?", "What is your age?"}, "1. What is your name? Ben 2. What is your age? 47 <<<###>>>") returns {"Ben", "47"}

See Also

insertquestions(): Use this function to return a single string that can be parsed with the extractanswers() function.

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK