Skip to content

Instantly share code, notes, and snippets.

@sofish
Created April 10, 2014 09:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sofish/10360350 to your computer and use it in GitHub Desktop.
Save sofish/10360350 to your computer and use it in GitHub Desktop.
var girl_said = 'Girl: 不爱理你'
, programmer_s_prattle = 'Programmer: 我喜欢... 你';
console.log(girl_said);
girl_said = girl_said.replace(/(?:with\_love)?(不|理)/g, function(ignore) {
// said in heart
console.log(programmer_s_prattle);
return ignore = '';
})
console.log(girl_said);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment