Most Pythonic was to strip all non-alphanumeric leading characters from string

9.8k views Asked by At

For example

!@#123myname --> myname
!@#yourname!@#123 --> yourname!@#123

There are plenty of S.O. examples of "most pythonic ways of removing all alphanumeric characters" but if I want to remove only non-alphabet characters leading up to first alphabet character, what would be the best way to do this?

I can do it with a while loop but im looking for a better python solution

3

There are 3 answers

5
Pruthvi Raj On BEST ANSWER

If you want to remove leading non-alpha/numeric values:

while not s[0].isalnum(): s = s[1:]

If you want to remove only leading non-alphabet characters:

while not s[0].isalpha(): s = s[1:]

Sample:

s = '!@#yourname!@#'
while not s[0].isalpha(): s = s[1:]
print(s)

Output:

yourname!@#
2
khagler On

Just use str.lstrip.

It takes a string containing the characters to remove from the left side of the string, and will remove those characters regardless of the order in which they appear. For example:

s = "!@#yourname!@#"
print s.lstrip('@!#') # yourname!@#
1
Padraic Cunningham On

You could use a regex matching non-alphanumeric chars at the start of the string:

s = '!@#myname!!'
r = re.compile(r"^\W+") # \W non-alphanumeric at start ^ of string

Output:

In [28]: r = re.compile(r"^\W+")  
In [29]: r.sub("",'!@#myname')
Out[29]: 'myname'    
In [30]: r.sub("",'!@#yourname!@#')
Out[30]: 'yourname!@#'

\W+ will keep underscores so to just keep letters and digits at the start we can:

s = '!@#_myname!!'
r = re.compile(r"^[^A-Za-z0-9]+") 

print(r.sub("",s))
myname!!

If you want to just remove up to the first letter:

r = re.compile(r"^[^A-Za-z]+")