- or download this
$_ = 'alpha="first" beta="second" gamma="third"';
...
print("$id: $val\n");
}
- or download this
alpha: "first"
beta: "second"
gamma: "third"
- or download this
$_ = 'alpha="first" beta="second" gamma="third"';
while (/(\w+)=("[^"]*"|\w+)/g) {
print("$1: $2\n");
}
- or download this
alpha: "first"
beta: "second"
gamma: "third"