##
### The final result of this should be the string "Modified" from the example line given above...
for (my $x = 0; $x <= $#reportData; $x++)
{
if ($reportData[$x] =~ /^(\s+)(\)/)
{
(my $changeType) = $reportData[$x] =~ /\>[A-z]+\;
# my $changeType = $reportData[$x] =~ /\>[A-z]+\;
# $reportData[$x] =~ /\>[A-z]+\;
# my $changeType = $reportData[$x];
# my $changeType = $1 if $reportData[$x] =~ /\>[A-z]+\;
print "Change Type is = $changeType\n";
}
}