I have a textAreaInput box,
textAreaInput("text", label = h3("Text input"), value = ""),
hr(),
fluidRow(column(3, verbatimTextOutput("value"))))
I input the following text:
AT4G31950
AT5G24110
AT1G26380
AT1G05675
AT1G69920
I can output the inputted text to the screen.
output$value <- renderText({ input$text })
However, it seems that input$text is a character vector of only 1. Sort of like:
"AT4G31950
AT5G24110
AT1G26380
AT1G05675
AT1G69920"
I want to use this inputted text a line or two late in R code. What I need is a character vector with multiple values:
"AT4G31950" "AT5G24110" "AT1G26380" "AT1G05675" "AT1G69920"
How can I process input$text to change it as needed ?