# Vector3Int.Parse

## Overload 1

```csharp
static Vector3Int Parse(string str)
```

Given a string, try to convert this into a Vector3Int. Example formatting is "x,y,z", "[x,y,z]", "x y z", etc.

### Parameters

- `str` (`string`)

### Returns

`Vector3Int`

## Overload 2

```csharp
static Vector3Int Parse(string str, System.IFormatProvider provider)
```

### Parameters

- `str` (`string`)
- `provider` (`System.IFormatProvider`)

### Returns

`Vector3Int`

Declared in [Vector3Int](/api/Vector3Int).
Assembly: `Sandbox.System`.
