:relfileprefix: ../../../ [#boost-urls-ipv4_address-2constructor-08] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/ipv4_address.adoc[pass:[ipv4_address]]::ipv4_address Construct from a string. == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- explicit ipv4_address(core::string_view s); ---- == Description This function constructs an address from the string `s`, which must contain a valid IPv4 address string or else an exception is thrown. [NOTE] For a non-throwing parse function, use xref:boost/urls/parse_ipv4_address.adoc[parse_ipv4_address] . === Exception Safety Exceptions thrown on invalid input. === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.2[3.2.2. Host (rfc3986)] == Exceptions |=== | Name | Thrown on | `system_error` | The input failed to parse correctly. |=== == Parameters |=== | Name | Description | *s* | The string to parse. |=== == See Also xref:boost/urls/parse_ipv4_address.adoc[parse_ipv4_address] .