regex - Regular Expression to match multiple patterns in Php
220
I try to extract the Cookies from the following String:
< Server: Apache
< Set-Cookie: fe_typo_user=b4f33487c434684655dccf65a0499010; path=/
< Set-Cookie: PHPSESSID=d8pgb31olkc9c1jc5tc5qn23a1; path=/
< Expires: Thu, 19 Nov 1981 08:52:00 GMT
Therefore I tried
/.*Set-Cookie: (.*?); /s
Shouldn't that get me all occurrences of strings between "Set-Cookie: " and ";"?
I received:
array(2) {
[0]=> string(137) \"< Server: Apache
< Set-Cookie: fe_typo_user=b4f33487c434684655dccf65a0499010; path=/
< Set-Cookie: PHPSESSID=d8pgb31olkc9c1jc5tc5qn23a1; \"
[1]=> string(36) \"PHPSESSID=d8pgb31olkc9c1jc5tc5qn23a1\"
}
Thanks for explanation.
Answer
Solution:
Gives:
Answer
Solution:
Just remove the first
.*
and use preg_match_all:Answer
Solution:
Try this one
/Set\-Cookie:\ ([^;]+);/