Regular Expressions 101

Sponsor⁠s

Community Library

Community Library Entry

1

Regular ExpressionOpen Workspace

/
gsScrollPos=(.*?);|gsScrollPos=(.*)
/
g

Description
Created·2015-09-10 19:48
Type·Match
Flavor·PCRE (Legacy)

When using javascript to get a cookie value by its name,

  1. Get the cookie string by document.cookie
  2. Use this pattern to get the proper value. Just replace the cookie name in my pattern.
  3. Use 1st or 2nd group(this is only used when your cookie name is last in the string)
Submitted by khpatel4991
Open Workspace