ADMIN_GetFirstString

Deprecated. Don't use for new development and try to migrate existing uses.

Type: Stored procedure

Splits the string on the first occurence of a specified character.

It is recommended to use ADMIN_SplitString instead.

Parameters

@FullString mandatory varchar(8000)
OUTPUT. Returns everything after the first occurrence of @Separator in @FullString. Returns null if the separator is not found.

Note that the parameter is used both for input and output.
@FirstString mandatory varchar(8000)
OUTPUT. Returns everything before the first occurrence of @Separator in @FullString. Returns @FullString if the separator is not found.
@Separator mandatory char(1)
Separator character.