Changes between Version 18 and Version 19 of Features/RegexEditor
- Timestamp:
- 03/18/11 15:50:53 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Features/RegexEditor
v18 v19 23 23 1. '''Matched text''' '''Foo Bar''' with '''Foo''' being red and underline 24 24 1. '''Result from replace''' contains '''Baz Bar''' 25 1. Regex {{{ \d+}}} Text: {{{ Foo 123 Bar }}}, Expected Match: 12326 1. Regex {{{ \d*}}} Text: {{{ Foo 123 Bar }}}, Expected Match: 123(in 0.84 this marks the whole string)25 1. Regex {{{ \d+ }}} Text: {{{ Foo 123 Bar }}}, Expected Match: 123 26 1. Regex {{{ \d* }}} Text: {{{ Foo 123 Bar }}}, Expected Match: empty string before F and to give a warning accordingly (in 0.84 this marks the whole string) 27 27 1. Regex empty, Text: {{{ Foo 123 Bar }}}, Expected Match: nothing (in 0.84 this marks the whole string) 28 1. Regex {{{ (?=b) }}}, Text: {{{ abc }}}, Expected to Match the empty string between a and b. 28 29 29 30
