How to remove white space from start and end, also I would like to remove the character "\n" and "\t" by Regex.
I only able to remove the white space like this way replace(/^\s+|\s+$/g,'')
" My name is\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tRashel. "
Thanks in advance