fork(2) download
  1. import re
  2. text = '"Link To Wikipedia":[http://w...content-available-to-author-only...a.org/]'
  3. print re.sub(r'"([^"]+)":\[([^\]]+)\]', r'[[\2][\1]]', text)
Success #stdin #stdout 0.02s 4652KB
stdin
Standard input is empty
stdout
[[http://w...content-available-to-author-only...a.org/][Link To Wikipedia]]