I'm trying to check a string and then extract all the variables which starts with @. I can't find the appropriate regular expression to check the string. The string may start with @ or " and if it's started with " it should have a matching pair ".
Example 1:
"ip : "+@value1+"."+@value2+"."+@value3+"."+@value4
Example 2:
@nameParameter "@yahoo.com"
Thanks