Hi @RameshMukka ,
Do you want to restrict a textinput that user could only enter Alphabet and Spaces?
I'm afraid it's not supported to directly restrict a textinput to not allow characters or numbers.
For a textinput, you could only restrict whether you enter number or text. Text includes Alphabet, Spaces and character.

As an alternative solution, I suggest you add a justification when updating.
If the data in textinput includes characters or numbers, you could not update data and get a warning.
If the data in textinput only includes Alphabet and Spaces, you could update successfully.
You just need to set the submit button's OnSelect like this:
If(IsMatch(TextInput1.Text, "[a-zA-Z\s]+"),
//[a-zA-Z\s] represents Alphabet and Spaces, + represnets one or more
SubmitForm(formname),
Notify("please do not enter character or number in this field!",NotificationType.Warning)
)
Best regards,