<div dir="ltr"><div class="gmail_extra">On Sat, Apr 1, 2017 at 1:57 PM, Francis Daly <span dir="ltr"><<a href="mailto:francis@daoine.org" target="_blank">francis@daoine.org</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">If you want to match "word character or plus", use something like [\w+].<br></blockquote><div><br><div style="font-size:small;color:rgb(51,51,153);display:inline" class="gmail_default">​Defining a pattern over a simple assertion is kinda strange​. '[' & ']' are useless here, since you are not matching several symbols.<br></div><div style="font-size:small;color:rgb(51,51,153);display:inline" class="gmail_default">Use (?<session_value>\w+) and you should be all set.<br><br></div><div style="font-size:small;color:rgb(51,51,153);display:inline" class="gmail_default">Btw, if you were to use '+', [\w+] and [\w]+ have different meaning: first quantifier applies to '\w' only while latter applies to all the symbols in the pattern.<br></div></div></div><div style="font-size:small;color:rgb(51,51,153)" class="gmail_default">​<font size="1"><span style="color:rgb(102,102,102)">---<br></span><b><span style="color:rgb(102,102,102)">B. R.</span></b></font>​</div><br></div></div>