daft.Expression.str.concat

daft.Expression.str.concat#

Expression.str.concat(other: str) Expression[source]#

Concatenates two string expressions together

Note

Another (easier!) way to invoke this functionality is using the Python + operator which is aliased to using str.concat. These are equivalent:

>>> col("x").str.concat(col("y"))
>>> col("x") + col("y")
Parameters:

other (Expression) – a string expression to concatenate with

Returns:

a String expression which is self concatenated with other

Return type:

Expression