About 10,900,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 this …

  2. 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 DELIMITER …

  3. c - What is a delimiter? - Stack Overflow

    Oct 6, 2020 · A delimiter is anything you want it to be so long as it can be reliably detected and doesn't overlap with potential data. For example "hi" uses " as a delimiter, which means you must do "hi …

  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 MySQL that those …

  5. In Python, how do I split a string and keep the separators?

    Great. If you want alternating tokens and separators, as you usually do, it would of course be better to use \W+. The algorithm behind split also seems to indicate whether your list begins/ends with a token …

  6. java - String delimiter in string.split method - Stack Overflow

    Aug 11, 2011 · Yes, Pattern.quote is proper, but like the plain string with the backslashes it is still inefficient if you are going to split many times. In this case compiling the pattern is more efficient. …

  7. How do I split a string on a delimiter in Bash? - Stack Overflow

    May 28, 2009 · Split string based on delimiter in bash (version >=4.2) In pure bash, we can create an array with elements split by a temporary value for IFS (the input field separator). The IFS, among …

  8. How to use delimiter for CSV in Python? - Stack Overflow

    May 29, 2013 · I'm having trouble with figuring out how to use the delimiter for csv.writer in Python. I have a CSV file in which the strings separated by commas are in single cell and I need to have each …

  9. 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 should return …

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

    Mar 7, 2016 · >Executing: >USE `portaria`; >DROP unknown IF EXISTS `unknown_SYNTAX_ERROR`; > >DELIMITER $$ >USE `portaria`$$ >DELIMITER $$ > >CREATE PROCEDURE 'entradas_sai'( …