2015-07-28

PYTHON - Extract string content between parenthesis (without regex)

print YOUR_STRING[ YOUR_STRING.find( '(' ) + 1 : YOUR_STRING.find( ')' ) ]

No comments:

Post a Comment