> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/holoscan/sensor-bridge/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/holoscan/sensor-bridge/_mcp/server.

# hololink::emulation::IPAddress_to_string

> Convert an IPAddress object to its string representation.

```cpp showLineNumbers={false}
std::string hololink::emulation::IPAddress_to_string(
    const IPAddress &ip_address
)
```

Convert an [IPAddress](../typedefs/ipaddress) object to its string representation.

python (use [IPAddress](../typedefs/ipaddress) object **str**() method)

`def __str__(self: hemu.IPAddress) -> str`

**Returns:** String representation of the IP address

**Parameters**

**`ip_address`** `const IPAddress &`

The [IPAddress](../typedefs/ipaddress) object to convert

---