parse_set_cookie(str) -> WEBrick::Cookie
[permalink][rdoc][edit]-
サーバから送られてくる Set-Cookie ヘッダの値 str をパースし、新しく WEBrick::Cookie オブジェクトを生成し返します。
- [PARAM] str:
- Set-Cookie ヘッダの値を文字列で指定します。
require 'webrick' include WEBrick c = Cookie.parse_set_cookie('Shipping="FedEx"; Version="1"; Path="/acme"') p c.name, c.value #=> "Shipping" "FedEx"