[#boost-urls-parse_ipv6_address] = xref:boost/urls/parse_ipv6_address.adoc[boost::urls::parse_ipv6_address] :relfileprefix: ../../ :mrdocs: Parse a string containing an IPv6 address. == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/ipv6_address.hpp#L420[boost/url/ipv6_address.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- system::result<ipv6_address> parse_ipv6_address(core::string_view s) noexcept; ---- == Description This function attempts to parse the string as an IPv6 address and returns a result containing the address upon success, or an error code if the string does not contain a valid IPv6 address. == Exception Safety Throws nothing. == Return Value A result containing the address. == Parameters [cols=2] |=== | Name | Description | *s* | The string to parse. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#