StringBuilder Result
= New
StringBuilder
();
Regex R
= New
Regex
(
"/" (? // w ): (? // w )% (? // w ) / ""
,
Regexoptions
.
Compiled
For (
Match M
=
r
.
Match
(
INPUT
);
M
.
Success
;
M
=
M
.
Nextmatch
()) {
Result
.
Append
(
M
.
Result
(
"$ {data}: $ {key} * $ {value},"
ENVIRONMENT
.
Newline
));} return
Result
.
Tostring
();