Skip to content

Instantly share code, notes, and snippets.

@kevinswiber
Last active August 29, 2015 14:02
Show Gist options
  • Save kevinswiber/d04bd75725713d42eec2 to your computer and use it in GitHub Desktop.
Save kevinswiber/d04bd75725713d42eec2 to your computer and use it in GitHub Desktop.
Duktape Regex
#include "duktape.h"
int main() {
duk_context *ctx = duk_create_heap_default();
duk_eval_string(ctx, "print('Hello World'.replace(/\\s+|l*/g, ''));");
duk_destroy_heap(ctx);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment