If someone is editing a Korn (ksh) script this might be the pattern you seek:
printf '%s\n' "${variableWithTabs//[[:blank:]]/}"
# or
variable_withoutTabs="${variable_withTabs//[[:blank:]]/}"
According to this page there is a tab ([[:tab:]]), but that didn't work on the Korn shell where I tested.