I need to get 2 substrings S1 and S2 before and after @@token@@ from the following string
Token = 15d7b736-d8f0-e711-b842-100ba9d19b04@@token@@131599776034855065
'/// To Get S1
S1 = Token.Substring(0, Token.IndexOf("@@token@@"))
S1 will be '15d7b736-d8f0-e711-b842-100ba9d19b04'
but I'm not sure how to get S2? S2 should be '131599776034855065'
Any help :)