- or download this
<TABLE name="table1">
FieldName1 VARCHAR(20)
...
FieldName2 INT(20)
FieldName3 BOOL
</TABLE>
- or download this
while ($file =~ s/<TABLE(.*)>([\n.]*)<\/TABLE>//i)
{
...
#
my $fields = $2;
}
- or download this
$file =~ s/<TABLE(.*)>(\n.*)//i
- or download this
$2 = 'FieldName1 VARCHAR(20)'
- or download this
$file =~ s/<TABLE(.*)>([\n.]*)//i\
- or download this
$2 = "\n";