About 10,300,000 results
Open links in new tab
  1. When to use the terms "delimiter," "terminator," and "separator"

    The terms, delimiter, separator originate from the classical idea of storage, conceptually, being comprised of files, records, and fields, (a file has many records, a record has many fields). In …

  2. mysql - Syntax error near $$DELIMITER - Stack Overflow

    Mar 7, 2016 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation …

  3. Difference between CR LF, LF and CR line break types

    Oct 12, 2009 · I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break types.

  4. sql - What does DELIMITER // do in a Trigger? - Stack Overflow

    Aug 28, 2009 · In SQL you close each statement with a delimiter, which is by default a semicolon (;). In a trigger you need to write multiple statements, each ending in a semicolon. To tell …

  5. What are delimiters for in Regular Expressions? - Stack Overflow

    Sep 22, 2023 · The delimiter's role is not to affect how the regex is interpreted in terms of pattern matching. Instead, it provides a way to separate the regex pattern from other parts of the code …

  6. parsing - Parse (split) a string in C++ using string delimiter ...

    I tried the one for single character delimiter, and if the string ends in a delimiter (i.e., an empty csv column at the end of the line), it does not return the empty string.

  7. sql - Delimiters in MySQL - Stack Overflow

    Apr 21, 2012 · You define a DELIMITER to tell the mysql client to treat the statements, functions, stored procedures or triggers as an entire statement. Normally in a .sql file you set a different …

  8. sql - How do I split a delimited string so I can access individual ...

    Nov 2, 2015 · Using SQL Server, how do I split a string so I can access item x? Take a string "Hello John Smith". How can I split the string by space and access the item at index 1 which …

  9. Why the delimiters are used in CAN protocol - Stack Overflow

    Feb 8, 2016 · The "recessive" delimiter bits ensure that there are bit transitions in the fields that do not have bit-stuffing applied. The bit transitions are necessary to recover timing …

  10. Valid JSON giving JSONDecodeError: Expecting , delimiter

    Feb 6, 2012 · JSONDecodeError: Expecting , delimiter: line 1 column 23 (char 23) I've confirmed that it's valid json and I have no control over the formatting of it so how can I get past this error?