Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LazyQuotes (0.13 sec)

  1. src/encoding/csv/fuzz_test.go

    			{Comma: ','},
    			{Comma: ';'},
    			{Comma: '\t'},
    			{Comma: ',', LazyQuotes: true},
    			{Comma: ',', TrimLeadingSpace: true},
    			{Comma: ',', Comment: '#'},
    			{Comma: ',', Comment: ';'},
    		} {
    			t.Logf("With options:")
    			t.Logf("  Comma            = %q", tt.Comma)
    			t.Logf("  LazyQuotes       = %t", tt.LazyQuotes)
    			t.Logf("  TrimLeadingSpace = %t", tt.TrimLeadingSpace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 01:26:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/encoding/csv/reader.go

    	// made and records may have a variable number of fields.
    	FieldsPerRecord int
    
    	// If LazyQuotes is true, a quote may appear in an unquoted field and a
    	// non-doubled quote may appear in a quoted field.
    	LazyQuotes bool
    
    	// If TrimLeadingSpace is true, leading white space in a field is ignored.
    	// This is done even if the field delimiter, Comma, is white space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ParseError.Line", Field, 0},
    		{"ParseError.StartLine", Field, 10},
    		{"Reader", Type, 0},
    		{"Reader.Comma", Field, 0},
    		{"Reader.Comment", Field, 0},
    		{"Reader.FieldsPerRecord", Field, 0},
    		{"Reader.LazyQuotes", Field, 0},
    		{"Reader.ReuseRecord", Field, 9},
    		{"Reader.TrailingComma", Field, 0},
    		{"Reader.TrimLeadingSpace", Field, 0},
    		{"Writer", Type, 0},
    		{"Writer.Comma", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top