The program that removes all non-alphabetic characters from a given input is as follows:
import re
def onlyalphabet(text):
text = re.sub("[^a-zA-Z]+", "",text)
return text
print(onlyalphabet("*#126vinc"))
The code is written in python.
learn more on python here: https://brainly.com/question/14468239