Imagine I have the following string :
set(SEXY_STRING \"I love CMake\")
then I want to obtain SEXY_LIST from SEXY_STRING
SEXY_LIST
SEXY_STRING
string(REGEX MATCHALL "[a-zA-Z]+\ |[a-zA-Z]+$" SEXY_LIST "${SEXY_STRING}")