Below is my string pattern,
'YES-HIDETotal Maze LLC.'
& I want to split the above string into below list,
['YES-HIDE', 'Total Maze LLC.']
How can I do this using regex in python?
Edit:
I'd like to split a string on a capital letter next to a capital letter followed by a lowercase letter using re
package
To provide another example
'PLEASE SPLITThis String'
into
['PLEASE SPLIT', 'This String']