Help for this page

Select Code to Download


  1. or download this
    <input type="checkbox"
        ng-model="data.mydebts.loan[0]"
    
  2. or download this
    <input type="checkbox"
        ng-model="data.mydebts.loan[0]" label="loan"
    
  3. or download this
    while ($my_file =~ /(input type=\"checkbox\".*?(\w+)\[0\])/sg) {
    
    $my_file =~ s/$1/$1 label="$2"/s;
    
    };
    
  4. or download this
    s /$1/TEST/s;