Skip to content

❗ This is a read-only mirror of the CRAN R package repository. consolechoice — An Easy and Quick Way to Loop a Character Vector as a Menu in the Console

License

Notifications You must be signed in to change notification settings

cran/consolechoice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

consolechoice

R-CMD-check CRAN status Codecov test coverage

The goal of consolechoice is to make it easier to display a menu to the console for the user to select an option. This will save time writing code with loops and conditional logic. Only one line of code is required using consolechoice to solve this issue.

consolechoice allows character vectors or folder paths as an argument to print the menu to the console. Regular expression syntax can also be used to limit certain file types or names for selection.

consolechoice helps take away the complexity of showing a menu in the console and waiting for the users choice.

Installation

You can install the development version of consolechoice from GitHub with:

# install.packages("devtools")
devtools::install_github("John-Piper/consolechoice")

Usage

library(consolechoice)

# Example using console_menu function.

options <- c("Eat", "Sleep", "Code", "Repeat")


choice <- console_menu(options)

result <- switch(
  choice,
       "1" = "Eating some food",
       "2" = "Going to Sleep",
       "3" = "Doing some coding",
       "4" = options,
       "q" = stop("You have decided to quit")
)
       
print(result)


# Example using console_file_menu function.

choice <- console_file_menu(
  folder_path ="example/foler/address",
  pattern = ".txt"
  )

if (choice == "example.txt") {
  
  # code here...
  
} else {
  
  # more code here...
  
}

About

❗ This is a read-only mirror of the CRAN R package repository. consolechoice — An Easy and Quick Way to Loop a Character Vector as a Menu in the Console

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages