prefix()

The prefix() function adds a prefix to all words of a string.

Syntax

prefix(prefix, expr)

Example

prefix('g', 'Foo Bar')

produces

'gFoo gBar'