I have created variable named token.
I have added token in next step ie login step parameter.
But it is not accepting the token value saved in variable. It is displaying 'token' term and login step look failed. It should take the values of regular expression field shown in first image.
Most probably JMeter "is not accepting" the variable because your Regular Expression Extractor fails to find anything matching the regular expression you've provided in the response headers.
We cannot suggest an appropriate configuration without seeing what does the token look like in the response, my assumption is that:
It looks like you're trying to extract a value from an HTML input, in this case you need to switch "Field to check" to
Body
It's not recommended to use regular expressions for extracting data from HTML, it might be a better idea to consider switching to CSS Selector Extractor instead. And in case if there are multiple inputs (and I believe this is the case) you should provide an unique filter like input's name or ID or whatever, otherwise you will get the first match.