Convert::TBX::UTX - Convert back and forth from TBX-Min to UTX format
use Convert::TBX::UTX;
my $UTX_string_output = min2utx('/path/to/file.tbx', '/path/to/output'); #or scalar ref to data
my $TBX_string_output = utx2min('/path/to/file.utx', '/path/to/output');
A two way converter for Termbase Exchange files in UTX 1.11 (see http://www.aamt.info/english/utx/ for specifications) format to TBX-Min.
Converts TBX-Min into UTX format. 'Input' can be either filename or scalar ref containing scalar data. If given only 'input' it returns a scalar ref containing the converted data. If given both 'input' and 'output', it will print converted data to the 'output' file.
Converts UTX into TBX-Min format. 'Input' can be either filename or scalar ref containing scalar data. If given only 'input' it returns a scalar ref containing the converted data. If given both 'input' and 'output', it will print converted data to the 'output' file.
Converts TBX-Min to UTX and prints to <output>.
Converts UTX to TBX-Min and prints to <output>.
James Hayes james.s.hayes@gmail.com, Nathan Glenn garfieldnate@gmail.com
This software is copyright (c) 2013 by Alan Melby.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.