The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catmandu::Fix::export_to_string - convert the value of field using a named exporter

SYNOPSIS

    export_to_string(my.field,'YAML')

    export_to_string(my.field2,'JSON')

    export_to_string(my.field3,'CSV', 'sep_char' => ';' )

DESCRIPTION

export_string( PATH, NAME [, EXPORT_OPTIONS ] )

This fix uses the function export_to_string of the package Catmandu, but requires the NAME of the exporter.

It expects a HASH or ARRAY as input. Other values are silently ignored.

PATH
NAME

name of the exporter to use. As usual in Catmandu, one can choose:

* full package name of the exporter (e.g. 'Catmandu::Exporter::JSON')

* short package name of the exporter (e.g. 'JSON')

* name of the exporter as declared in the Catmandu configuration

EXPORT_OPTIONS

extra options for the named exporter

AUTHOR

Nicolas Franck, <nicolas.franck at ugent.be>

SEE ALSO

Catmandu::Fix