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 273 views
1 answer 273 views
2 answers 219 views
2 answers 261 views
2 answers 270 views
2 answers 178 views
1 answer 199 views
199 views asked Jul 28, 2023 by avibootz
...