This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
> (regex {d{3}} "12343243242")
("123" 0 3)
> (regex {^d{3}} "12343243242")
("123" 0 3)
> (regex {d{3}$} "12343243242")
("242" 8 3)
> (regex {^d{3}$} "12343243242")
nil
> (regex {^d{3}$} "123")
("123" 0 3)