You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 8, 2023. It is now read-only.
Could be changed to split( "; ?" );
; matches the character ; literally (case sensitive)
SP? matches the character SP literally (case sensitive)
? Quantifier — Matches between zero and one times, as many times as possible, giving back as needed
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It does not comply with RFC since the space following the ; delimiter is optional. Ref https://tools.ietf.org/html/rfc6265#section-2.2
Could be changed to split( "; ?" );
; matches the character ; literally (case sensitive)
SP? matches the character SP literally (case sensitive)
? Quantifier — Matches between zero and one times, as many times as possible, giving back as needed
The text was updated successfully, but these errors were encountered: