Help for this page

Select Code to Download


  1. or download this
    'bob' ^~ /^bobby/ = true
    'bob' ^~ /^fred/  = false
    'bob' ^~ /^bo*[a-z]./  = true
    'bob' ^~ /^ch*/   = false
    
  2. or download this
    /foo/ = /.*foo.*/ therefore:
    'bob' ^~ /foo/ = true