Example String -
exampleString ( 123 )
I want two parts from the above string -
1-) exampleString
by splitting
2-) 123
by splitting and then removing brackets and two spaces, one at each end
More specifically, I want to know how can I extract a string between two brackets ( )
How to achieve that in swift 4.2?
Thanks