Skip to content

Instantly share code, notes, and snippets.

@ynkdir
Created October 16, 2014 13:34
Show Gist options
  • Save ynkdir/7764b240cbee98c8feec to your computer and use it in GitHub Desktop.
Save ynkdir/7764b240cbee98c8feec to your computer and use it in GitHub Desktop.
substitute test
let y = substitute('aaa', '\ze', 'x', 'g') | $put =y " => xaxaxax
$put ='aaa' | s/\ze/x/g " => xaxaxa
let y = substitute('abc', 'a\|\ze', 'x', 'g') | $put =y " => xxbxcx
$put ='abc' | s/a\|\ze/x/g " => xbxc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment