LowerCasePipe
pipe
Transforms text to all lower case.
transform
3 overloads@paramvalue
string
The string to transform to lower case.
@returns
string
@paramvalue
null | undefined
@returns
null
@paramvalue
string | null | undefined
@returns
string | null
Usage Notes
The following example defines a view that allows the user to enter text, and then uses the pipe to convert the input text to all lower case.
@Component({ selector: 'lowerupper-pipe', template: `<div> <label>Name: </label><input #name (keyup)="change(name.value)" type="text" /> <p>In lowercase:</p> <pre>'{{ value | lowercase }}'</pre> <p>In uppercase:</p> <pre>'{{ value | uppercase }}'</pre> </div>`, standalone: false,})export class LowerUpperPipeComponent { value: string = ''; change(value: string) { this.value = value; }}
Jump to details