Definify.com
Definition 2024
Unsupported_titles_Square_brackets
Unsupported titles/Square brackets
|
---|
|
---|
Translingual
Punctuation mark
- Encloses a number of changes in quoted text.
- Paraphrase inserted to clarify context.
- [Luke,] I am your father.
- Comments about alterations.
- The message said: "Contact them ASAP, their e-mail is [omitted], that's the chance of your life!"
- Orthographical alterations.
- He said, "[d]on't do it!"
- See […] for omissions in quoted text.
- Paraphrase inserted to clarify context.
- (linguistics) Encloses a phonetic transcription.
- (computing, programming) Encloses optional parameters in syntax help.
- DROP TABLE tbl_name [, tbl_name] ...
- (programming) In a number of programming languages, encloses each value of an array.
- t[1] = "one"
- t[2] = "two"
Derived terms
- […] (used when omitting a section in quoted text)
Coordinate terms
Symbol
- (mathematics) Encloses a mathematical phrase which has increased operator precedence.
- (mathematics) Encloses a polynomial ring.
- (mathematics) Singles out a digit or portion of an equation, for commentary.
- (regular expressions) Matches a single character that is contained within the brackets, including ranges.
-
[abc]
matches "a", "b", or "c" -
[a-z]
specifies a range which matches any lowercase letter from "a" to "z" -
[^abc]
matches any character other than "a", "b", or "c". -
[^a-z]
matches any single character that is not a lowercase letter from "a" to "z"
-