I have several SQL rows of varchar data that have articles such as (A), (The) etc. placed at the end of the string.
ex:
"String Mover (The)"
However, I would like to have this displayed as
"The String Mover"
However, a general rule of anything in () to the front of the string will not always work because many times other information such as dates and context information appear within the parenthesis.
ex:
Walk in the Park (A) (unabridged)
to
A Walk in the Park (unabridged)
AND
Walkers' Journal: Walk in the Park (A) (unabridged)
to
Walkers' Journal: A Walk in the Park (unabridged)
Is there a function(s) that will allow me to move specific articles that appear within parenthesis to the front/or a specified position within a string (such as after the ":" as above)?
Any help would be appreciated!
Thanks!
ex:
"String Mover (The)"
However, I would like to have this displayed as
"The String Mover"
However, a general rule of anything in () to the front of the string will not always work because many times other information such as dates and context information appear within the parenthesis.
ex:
Walk in the Park (A) (unabridged)
to
A Walk in the Park (unabridged)
AND
Walkers' Journal: Walk in the Park (A) (unabridged)
to
Walkers' Journal: A Walk in the Park (unabridged)
Is there a function(s) that will allow me to move specific articles that appear within parenthesis to the front/or a specified position within a string (such as after the ":" as above)?
Any help would be appreciated!
Thanks!