---
title: Parse functions
sidebar_label: Parse
---

String-to-primitive parsing functions from [`io.deephaven.function.Parse`](/core/javadoc/io/deephaven/function/Parse.html).

| Type     | Name              | Signature                                                                                                                         | Description                                     |
| -------- | ----------------- | --------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------- |
| FUNCTION | parseBoolean      | [Boolean\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseBoolean(java.lang.String))            | Parses the string argument as a boolean.        |
| FUNCTION | parseByte         | [byte\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseByte(java.lang.String))                  | Parses the string argument as a byte.           |
| FUNCTION | parseByte         | [byte\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseByte(java.lang.String,int))         | Parses the string argument as a byte.           |
| FUNCTION | parseDouble       | [double\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseDouble(java.lang.String))              | Parses the string argument as a double.         |
| FUNCTION | parseFloat        | [float\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseFloat(java.lang.String))                | Parses the string argument as a float.          |
| FUNCTION | parseInt          | [int\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseInt(java.lang.String))                    | Parses the string argument as an int.           |
| FUNCTION | parseInt          | [int\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseInt(java.lang.String,int))           | Parses the string argument as an int.           |
| FUNCTION | parseLong         | [long\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseLong(java.lang.String))                  | Parses the string argument as a long.           |
| FUNCTION | parseLong         | [long\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseLong(java.lang.String,int))         | Parses the string argument as a long.           |
| FUNCTION | parseShort        | [short\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseShort(java.lang.String))                | Parses the string argument as a short.          |
| FUNCTION | parseShort        | [short\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseShort(java.lang.String,int))       | Parses the string argument as a short.          |
| FUNCTION | parseUnsignedInt  | [int\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseUnsignedInt(java.lang.String))            | Parses the string argument as an unsigned int.  |
| FUNCTION | parseUnsignedInt  | [int\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseUnsignedInt(java.lang.String,int))   | Parses the string argument as an unsigned int.  |
| FUNCTION | parseUnsignedLong | [long\(String\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseUnsignedLong(java.lang.String))          | Parses the string argument as an unsigned long. |
| FUNCTION | parseUnsignedLong | [long\(String, int\)](https://deephaven.io/core/javadoc/io/deephaven/function/Parse.html#parseUnsignedLong(java.lang.String,int)) | Parses the string argument as an unsigned long. |

## Related documentation

- [Auto-imported functions](./index.md)
