I have been trying to form a regex for a pattern which will have a constant followed by 32 non white space characters followed by ^ and I want to retrieve the 32 characters.
So far I tried this:
(?<=joint=)(.*)(?=^)
eg: asap^joint=345342345678764gd45fd45dd3sff5g5^foodisready^feels=dsdsdsdsdsdsdsdsd45d3cdfsdsd3423^
I want 345342345678764gd45fd45dd3sff5g5 and I guess I am not escaping the special character at the end. Any pointers would be appreciated.