OLD | NEW |
| (Empty) |
1 #!/bin/sh | |
2 | |
3 set -e | |
4 out=$GOROOT/src/regexp/syntax/doc.go | |
5 cp syntax.txt $out | |
6 sam -d $out <<'!' | |
7 ,x g/NOT SUPPORTED/d | |
8 /^Unicode character class/,$d | |
9 ,s/[«»]//g | |
10 ,x g/^Possessive repetitions:/d | |
11 ,x g/\\C/d | |
12 ,x g/Flag syntax/d | |
13 ,s/.=(true|false)/flag &/g | |
14 ,s/^Flags:/ Flag syntax is xyz (set) or -xyz (clear) or xy-z (set xy, clear z).
The flags are:\n/ | |
15 ,s/\n\n\n+/\n\n/g | |
16 ,x/(^.* .*\n)+/ | awk -F' ' '{printf(" %-14s %s\n", $1, $2)}' | |
17 1,2c | |
18 // Copyright 2012 The Go Authors. All rights reserved. | |
19 // Use of this source code is governed by a BSD-style | |
20 // license that can be found in the LICENSE file. | |
21 | |
22 // DO NOT EDIT. This file is generated by mksyntaxgo from the RE2 distribution. | |
23 | |
24 /* | |
25 Package syntax parses regular expressions into parse trees and compiles | |
26 parse trees into programs. Most clients of regular expressions will use the | |
27 facilities of package regexp (such as Compile and Match) instead of this package
. | |
28 | |
29 Syntax | |
30 | |
31 The regular expression syntax understood by this package when parsing with the P
erl flag is as follows. | |
32 Parts of the syntax can be disabled by passing alternate flags to Parse. | |
33 | |
34 . | |
35 $a | |
36 */ | |
37 package syntax | |
38 . | |
39 w | |
40 q | |
41 ! | |
OLD | NEW |