Skip to content

Instantly share code, notes, and snippets.

@possibilities
Created July 7, 2012 16:48
Show Gist options
  • Save possibilities/3067173 to your computer and use it in GitHub Desktop.
Save possibilities/3067173 to your computer and use it in GitHub Desktop.
var psParts = rawPs.split(/\w+/);
console.error(psParts);
[ ' ', ' ', '' ]
[ ' ', ' ', '' ]
[ ' ', ' ', '' ]
[ '', ' ', '' ]
[ '', ' ', '' ]
[ '', ' ', '' ]
[ '', ' ', '' ]
var psParts = rawPs.split(/\s+/);
console.error(psParts);
[ 'PID', 'PPID' ]
[ '305', '302' ]
[ '673', '305' ]
[ '677', '676' ]
[ '19952', '677' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment