Subject Re: cut characters from string
Author Adam
--- In firebird-support@yahoogroups.com, "yartax1" <yartax@h...> wrote:
>
> Hi,
>
> Any way to cut selected characters from a query like:
>
> select cut('1234 56 78',' ') from table
>
> produces result:
>
> '12345678' in query.
>
>
> Thanks!
> Yartax
>

This could certainly be created using a stored procedure going through
the string sequentially and only adding it if it <> Param2. A UDF is
another way this could be done.

Adam