Python : extract substring from string

51 Views Asked by At

I would like to extract 'test' from '<AAA>test</AAA>'. Here is my code. I'm sure it can be improved :

test = '<AAA>test</AAA>'

test = test.replace('</AAA>', '<AAA>')
test = test.split('<AAA>')
test = test[1]

print(test)

Any idea on how to write it in a lighter way ?

Many thanks...

0

There are 0 best solutions below