Skip to content

Releases: thierryc/Sketch-Find-And-Replace

Sketch Find And Replace

12 Dec 16:55
Compare
Choose a tag to compare

Improve find and replace when elements are selected.

Sketch Find And Replace

28 Nov 23:36
f754e3f
Compare
Choose a tag to compare

Sketch Find And Replace 1.16

23 Nov 02:59
Compare
Choose a tag to compare

Fix regex for sktech 47
Save find and replace string
Typo

Sketch-Find-And-Replace

22 Nov 19:34
17f24ef
Compare
Choose a tag to compare

Merge pull request #56 from thierryc/regex-fix-47
RegEx not working in Sketch 47 #55

Sketch-Find-And-Replace

19 Oct 00:26
Compare
Choose a tag to compare

fix Number of replacements made toast does not include changes in symbol overrides

Sketch-Find-And-Replace 1.13

17 Oct 01:17
Compare
Choose a tag to compare

Replace Text Preserving Attribute Ranges when is possible

ReplaceTextPreservingAttributeRanges

17 Oct 00:55
Compare
Choose a tag to compare

ReplaceTextPreservingAttributeRanges

Sketch-Find-And-Replace (REGEX) 1.11

28 Jul 14:45
Compare
Choose a tag to compare
  • Add version in description for a better user support
  • Bugfix

Sketch-Find-And-Replace (REGEX) 1.10

17 Jul 14:07
Compare
Choose a tag to compare

Get the Regex Power ! ⚡️

String: "John Smith"

Find: (\w+)\s+(\w+)

Replace with: "$2 $1"

Result: Smith John.

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

15 Jul 11:48
Compare
Choose a tag to compare
var re = /(\w+)\s(\w+)/;
var str = 'John Smith';
var newstr = str.replace(re, '$2, $1');