I have this kind of string.
'"asdfasdf","123456", this is a message. OK'
What I want to do is declare variables according to the first and second quoted values and then the rest of the message until the OK.
(note: the length of the string inside the '' is not consistent)
$First = "asdfasdf"
$Second = "123456"
$Message = "this is a message"
Is this even possible?
Is there something like " "$First","$Second", "$Message" OK " kind of way?