in reply to Re^2: Reading notes in gedcom files?
in thread Reading notes in gedcom files?

To close this off, it would seem the Notes field in Gedcom files can accept many formats.

The script below works as originally expected.

Thanks for the help.

#!/bin/perl -w use strict; use Gedcom; my $ged = Gedcom->new(shift); $ged->resolve_xrefs; for my $i ( $ged->individuals ) { for my $n ( $i->note ) { print "========================================\n"; print $i->name, "\n"; if (ref $n) { print $n->get_value, "\n"; } else { print "$n\n"; } #print "========================================\n"; } }