'' <b>GO Package strings</b><br>
'' Contains reports whether substr is within s.
Static Public Function Contains(s As String, substr As String) As Boolean
  If InStr(s, substr) > 0 Then
    Return True
  Else
    Return False
  Endif
End