4 ms·
You’ve got a problem you think regex can solve, now you’ve got 2 problems.
by arthur5005 9y ago
You’ve got a problem you think regex can solve, now you’ve got 2 problems.
- wruza 9y agoI wrote a list of json keys that should be taken from a message and :‘<,’>s/\(\S\+\)\s{0,}/t.\1 = message.\1;\r/g Hey, did you commit already? Still typing?
- jessaustin 9y agoIt looks like your quote characters might be messed up there? Anyway, to parse json on the command line one should just use jq.
- wruza 9y agoSingle quotes were modified by HN engine, right. It is not a command line (thinking of sed?), it is the middle of a source code in my editor. I have a json-parsed message and t is a target object. a b foo c t.a = !!message.a; t.b = String(message.b); t.foo = message.foo; t.c = tonum(message.c);