Help for this page

Select Code to Download


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