# PascalCaseWithSpace (String str)

| Name                     | *PascalCaseWithSpace*                                     |
| ------------------------ | --------------------------------------------------------- |
| Applicable To (DataType) | String                                                    |
| Purpose                  | To insert a space between a string written in PascalCase. |
| Description              | Places a space between characters of PascalCase string.   |
| Return Type              | String                                                    |
| Syntax                   | str \[System.String] – the PascalCase string              |

![properties](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/U1MkVl6wm2haE85CQIsU/properties.png)

## Example

We have a customers' dataset in which the *ContactTitle* field is in pascal case. Our goal is to add spaces between the characters in this field.

![1-output](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/cnPZYcZUG31IGdV9pa0C/1%20output.png)

We will map the *ContactTitle* data field to the str under the Input node inside the *Function* transformation object.

![dataflow](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/iVWWM0XmHWoiYWCK98fk/dataflow.png)

In the output, you can see that the data inside the *ContactTitle* field has been converted to proper case.

![2-output](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/MeG7ESMExKroFSGjIkyG/2%20output.png)
