[ADF-3615] created a pipe to replace empty space in strings with a special character (#4005)

This commit is contained in:
Vito
2018-11-26 16:15:50 +00:00
committed by Eugenio Romano
parent 91e5251bd0
commit 8a09d0db6a
5 changed files with 135 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
---
Added: v2.0.0
Status: Active
Last reviewed: 2018-11-19
---
# Format Space pipe
Replace all the white space in a string into a character given.
## Basic Usage
<!-- {% raw %} -->
```HTML
<div [id]="'CHECK MY ID' | formatSpace">
BATTLESTAR GALACTICA
</div>
```
<!-- {% endraw %} -->
## Details
The pipe will replace all the white space between the string into `_` by default and will transform the string in lowercase (ex. `test a pipe` => `test_a_pipe`).
It is possible specify a different character for the replacing by passing the character you want in input.
It is possible avoid the transformation into lowercase by passing `false` for the `lowercase` option.