When I try to use the "startswith 
<http://julia.readthedocs.org/en/latest/stdlib/strings/>" function Julia 
cannot locate it. "endswith" seems to work fine. Am I doing something wrong?

Thanks!

   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "help()" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.3.4 (2014-10-21 20:18 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org release
|__/                   |  x86_64-linux-gnu

julia> startswith("asdfas", "asd")
ERROR: startswith not defined

julia> startswith
ERROR: startswith not defined

julia> endswith("blah", "ah")
true

Reply via email to