I know how to remove all the punctuation in a string.
import string
s = '.$ABC-799-99,#'
table = string.maketrans("","") # to remove punctuation
new_s = s.translate(table, string.punctuation)
print(new_s)
# Output
ABC79999
How do I strip all leading and trailing punctuation in Python? The desired result of '.$ABC-799-99,#'
is 'ABC-799-99'
.