Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
212 B

  1. md2csv<-function(text, rm_blank=T){
  2. text<-strsplit(text, "\n")[[1]]
  3. text<-gsub("^[ |]*|[|][ ]*$","",text)
  4. if(rm_blank){text<-gsub(" ","",text)}
  5. text<-gsub("[|]",",",text)
  6. return(cat(text,sep = "\n"))
  7. }