Array Join
The ArrayJoinPipe
is an Angular pipe that facilitates joining elements of an array into a single string using a specified separator. The default separator is a comma (,
).
Usage
import {ArrayJoinPipe} from 'ngx-lift';
@Component({
standalone: true,
imports: [ArrayJoinPipe],
template: `
<p>{{ [1, 2, 3, 4] | arrayJoin }}</p>
<!-- Output: "1,2,3,4" -->
<p>{{ ['apple', 'orange', 'banana'] | arrayJoin: ';' }}</p>
<!-- Output: "apple;orange;banana" -->
<p>{{ ['John', 'Doe'] | arrayJoin: ' - ' }}</p>
<!-- Output: "John - Doe" -->
`
})
export class ArrayJoinPipeDemoComponent { }