With PHP, I am trying to select only --- select.this --- part from the below string
// String
abcd efg select.this 123 456
Goal : get the - select.this - part of the string above into a variable (everything before and after a period till the occurrence of a blank space)
Would I need a regular expression for this ?