Here is a sentence
"[come]and[joy]"
I want to get a text in Second "[ ]"
So i'll use a
Mid(10,14)
For getting indexnumber (10,14), I wrote next code
sentense.findall('[')[1]
But, occurred error
"AttributeError: 'str' object has no attribute 'findall'
If i use the below code
sentense.find('[')
it return just first index number of '[' = 0 How can i get a second index number of '[' = 10?
It must be not using like this sentense.find('[',1), It will be possible to search sencond, or third, any Next level
please help me