Boost.URL

    • Quick Look
    • URLs
      • Parsing
      • Containers
      • Segments
      • Params
      • Normalization
      • String Token
      • Percent Encoding
      • Formatting
    • Customization
      • Parse Rules
      • Character Sets
      • Compound Rules
      • Ranges
      • RFC 3986
    • Examples
      • QR Code
      • Finicky
      • mailto URLs
      • Magnet Link
      • File Router
      • Router
      • Sanitizing URLs
    • Reference
      • Concepts
        • CharSet
        • Rule
        • StringToken
      • Help Card
  • boost::urls::decode_view::starts_with

boost::urls::decode_view::starts_with

Checks if the string begins with the given prefix

Synopsis

Declared in <include/boost/url/decode_view.hpp>

bool
starts_with(core::string_view s) const noexcept;

» more…​

bool
starts_with(char ch) const noexcept;

» more…​

Description

assert( decode_view( "Program%20Files" ).starts_with("Program") );

Linear.

Throws nothing.

Created with MrDocs