S
Silvio
Hello, I need help in writing a statement to extract the text between two
parentheses from the first open parentheses starting from the right of the
string.
Example:
This is just a test (Hello)
This is just a test (Hello There)
This is just a test (nice day) (Again)
From the example above the extraction will be:
Hello
Hello There
Again
This is what I have but it does not work properly (it extract the
parentheses and other text with parentheses not just the last one):
Right([Program Element],InStr([Program Element],"(")+1)
Thanks!
parentheses from the first open parentheses starting from the right of the
string.
Example:
This is just a test (Hello)
This is just a test (Hello There)
This is just a test (nice day) (Again)
From the example above the extraction will be:
Hello
Hello There
Again
This is what I have but it does not work properly (it extract the
parentheses and other text with parentheses not just the last one):
Right([Program Element],InStr([Program Element],"(")+1)
Thanks!