Denys Vlasenko | f56fe82 | 2010-08-06 17:21:52 +0200 | [diff] [blame^] | 1 | Source: a*b\*c |
| 2 | Replace str: _\\_\z_ |
| 3 | Pattern: single backslash and star: "replace literal star" |
| 4 | In assignment: a_\_z_b\*c |
| 5 | Unquoted: a_\_z_b\*c |
| 6 | Quoted: a_\_\z_b\*c |
| 7 | Pattern: double backslash and star: "replace backslash and everything after it" |
| 8 | In assignment: a*b_\_z_ |
| 9 | Unquoted: a*b_\_z_ |
| 10 | Quoted: a*b_\_\z_ |
| 11 | |
| 12 | Source: a\bc |
| 13 | Replace str: _\\_\z_ |
| 14 | Pattern: single backslash and b: "replace literal b" |
| 15 | In assignment: a\_\_z_c |
| 16 | Unquoted: a\_\_z_c |
| 17 | Quoted: a\_\_\z_c |
| 18 | Pattern: double backslash and b: "replace backslash and b" |
| 19 | In assignment: a_\_z_c |
| 20 | Unquoted: a_\_z_c |
| 21 | Quoted: a_\_\z_c |
| 22 | |
Denys Vlasenko | b0fbe4b | 2010-08-05 17:19:27 +0200 | [diff] [blame] | 23 | Done: 0 |