in reply to Regular Expression

The following will get your fields and values into a hash in one line:
use Modern::Perl; use Data::Dumper; my $text = '%MYBOARD{project1|nameofproject1 remarks="Good,Verygood,be +xt,excellent" grade="7" teacher="Priyanka"}%'; my %data = $text =~/ ([^=]+)="([^"]+)/g; say Dumper(\%data);
Output:
$VAR1 = { 'grade' => '7', 'teacher' => 'Priyanka', 'remarks' => 'Good,Verygood,bext,excellent' };

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James