Lines Matching refs:value
36 # Remove punctuation from the given value37 function trimpunct(value) {38 while (value ~ /^["&]/) {39 value = substr(value, 2)41 while (value ~ /[]["&,}]$/) {42 value = substr(value, 1, length(value) - 1)44 return value