File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -116,12 +116,13 @@ private static int ToInt(XmlNode node, string name)
116116 private Regex pattern ;
117117 public void DoTextParse ( ref string content )
118118 {
119- // letter=" " // \S+=".+?"
120- // letter="x" // \S+=".+?"
121- // letter=""" // \S+=".+?"
119+ // letter=\" \" // \S+=\\?".+?\\?"
120+ // letter=" " // \S+=\\?".+?\\?"
121+ // letter="x" // \S+=\\?".+?\\?"
122+ // letter=""" // \S+=\\?".+?\\?"
122123 // letter="" // \S+
123124 // char // \S+
124- pattern = new Regex ( @"\S+="".+?""|\S+" ) ;
125+ pattern = new Regex ( @"\S+=\\? "".+?\\ ?""|\S+" ) ;
125126 string [ ] lines = content . Split ( new char [ ] { '\r ' , '\n ' } , StringSplitOptions . RemoveEmptyEntries ) ;
126127 ReadTextInfo ( ref lines [ 0 ] ) ;
127128 ReadTextCommon ( ref lines [ 1 ] ) ;
You can’t perform that action at this time.
0 commit comments