# Holograms\_ReplaceEmptyValues()

{% hint style="warning" %}
This function will not have very much use outside of holograms.
{% endhint %}

### Full Function

Holograms\_ReplaceEmptyValues(lines: text)

###

### Parameters

<table><thead><tr><th width="150">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>lines</td><td>text/string</td><td>Text to get split</td></tr></tbody></table>

### Return Value

This function will return a list with the values seperated

Example:

```
set {_newLines::*} to Holograms_ReplaceEmptyValues("||Seperated|| ||Hologram||")
# {_newLines::1} = "{empty}"
# {_newLines::2} = "Seperated"
# {_newLines::3} = "{empty}"
# {_newLines::4} = "Hologram"
```
