# 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://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FvR1c8SnOzhCi5EQr8EwU%2Fproperties.png?alt=media)

## 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://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FJiQ4QcbljgP8sBcQTenv%2F1%20output.png?alt=media)

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

![dataflow](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FL9tJhqdpBQ1Vnr4naWRP%2Fdataflow.png?alt=media)

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

![2-output](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2Fvnbu9woxs7uJ5fojyDdt%2F2%20output.png?alt=media)
