How to split a string on uppercase characters into a list with Python

2 Answers

0 votes
import re 
  
s = 'PythonJavaC#'

lst = re.findall('[A-Z][^A-Z]*', s) 
  
print(lst) 



'''
run:

['Python', 'Java', 'C#']

'''

 



answered Jan 4, 2020 by avibootz
0 votes
import re 
  
s = 'PythonJavaC#'

lst = [e for e in re.split("([A-Z][^A-Z]*)", s) if e] 
  
print(lst) 



'''
run:

['Python', 'Java', 'C#']

'''

 



answered Jan 4, 2020 by avibootz

Related questions

2 answers 265 views
1 answer 265 views
2 answers 208 views
2 answers 249 views
2 answers 262 views
2 answers 176 views
1 answer 195 views
195 views asked Jul 28, 2023 by avibootz
...