Skip to content
Advertisement

Merge the matches from regular expressions into a single list

I am trying to separate a string in CamelCase into a single list

I managed to separate the words with regular expressions

But I am clueless on how create a single list of all the matches

I tried to concatenate the lists, append something like that but I don’t think it would work in my case

JavaScript

output:

JavaScript

Desired output:

JavaScript

Advertisement

Answer

You’re looking for re.findall(), not re.finditer():

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement