()
| 2531 | } |
| 2532 | |
| 2533 | func ExamplePipe_Replace() { |
| 2534 | script.Echo("a\nb\nc\n").Replace("b", "replacement").Stdout() |
| 2535 | // Output: |
| 2536 | // a |
| 2537 | // replacement |
| 2538 | // c |
| 2539 | } |
| 2540 | |
| 2541 | func ExamplePipe_ReplaceRegexp() { |
| 2542 | re := regexp.MustCompile("w.*d") |