Is there an efficient way to extract the nth word of a string, for example if the string is;
"Create multistep table Playpen_Test.TablenameOne more SQL code etc"
I want to extract the following
Playpen_Test.TablenameOne
Baring in mind the name may change in length.
I have been trying to use the find function looking for the 3rd and 4th space and limiting the characters between them but not had much luck.
Many thanks if anyone can help
"Create multistep table Playpen_Test.TablenameOne more SQL code etc"
I want to extract the following
Playpen_Test.TablenameOne
Baring in mind the name may change in length.
I have been trying to use the find function looking for the 3rd and 4th space and limiting the characters between them but not had much luck.
Many thanks if anyone can help