| question_text {learnr} | R Documentation | 
Text box question
Description
Creates a tutorial question asking the student to enter text. The default
text input is appropriate for short or single-line text entry. For longer
text input, set the rows and/or cols argument to create a larger text
area.
When used with answer(), the student's submission must match the answer
exactly, minus whitespace trimming if enabled with trim = TRUE. For more
complicated submission evaluation, use answer_fn() to provide a function
that checks the student's submission. For example, you could provide a
function that evaluates the user's submission using
regular expressions.
Usage
question_text(
  text,
  ...,
  correct = "Correct!",
  incorrect = "Incorrect",
  try_again = incorrect,
  allow_retry = FALSE,
  random_answer_order = FALSE,
  placeholder = "Enter answer here...",
  trim = TRUE,
  rows = NULL,
  cols = NULL,
  options = list()
)
Arguments
| text | Question or option text | 
| ... | Answers created with  | 
| correct | For  | 
| incorrect | Text to print for an incorrect answer (defaults to
"Incorrect") when  | 
| try_again | Text to print for an incorrect answer (defaults to
"Incorrect") when  | 
| allow_retry | Allow retry for incorrect answers. Defaults to  | 
| random_answer_order | 
 | 
| placeholder | A character string giving the user a hint as to what can be entered into the control. Internet Explorer 8 and 9 do not support this option. | 
| trim | Logical to determine if whitespace before and after the answer
should be removed.  Defaults to  | 
| rows,cols | Defines the size of the text input area in terms of the
number of rows or character columns visible to the user. If either  | 
| options | Extra options to be stored in the question object. This is
useful when using custom question types. See  | 
Value
Returns a learnr question of type "learnr_text".
See Also
Other Interactive Questions: 
question_checkbox(),
question_numeric(),
question_radio(),
quiz()
Examples
question_text(
  "Please enter the word 'C0rrect' below:",
  answer("correct", message = "Don't forget to capitalize"),
  answer("c0rrect", message = "Don't forget to capitalize"),
  answer("Correct", message = "Is it really an 'o'?"),
  answer("C0rrect ", message = "Make sure you do not have a trailing space"),
  answer("C0rrect", correct = TRUE),
  allow_retry = TRUE,
  trim = FALSE
)
# This question uses an answer_fn() to give a hint when we think the
# student is on the right track but hasn't found the value yet.
question_text(
  "What's the most popular programming interview question?",
  answer("fizz buzz", correct = TRUE, "That's right!"),
  answer_fn(function(value) {
    if (grepl("(fi|bu)zz", value)) {
      incorrect("You're on the right track!")
    }
  }, label = "fizz or buzz")
)