Skip to content

Sketch-Find-And-Replace (REGEX) 1.10-beta2

Pre-release
Pre-release

Choose a tag to compare

@thierryc thierryc released this 15 Jul 11:48
· 4 commits to regex-ui since this release
var re = /(\w+)\s(\w+)/;
var str = 'John Smith';
var newstr = str.replace(re, '$2, $1');