answersLogoWhite

0

That refers to any character or group of characters used to separate different parts in a string. It might be spaces, commas, semicolons, tabs, or some other symbol.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

How do you write a program to find the no of words in a given string in dot net?

You find a language that can be targeted towards the .NET Framework. What you are suggesting is something related to string manipulation and you can work with delimiters.


How do you use the strtok function?

strtok sequentially truncate string if delimiter is found. If string is not NULL, the function scans string for the first occurrence of any character included in delimiters. If it is found, the function overwrites the delimiter in string by a null-character and returns a pointer to the token, i.e. the part of the scanned string previous to the delimiter. After a first call to strtok, the function may be called with NULL as string parameter, and it will follow by where the last call to strtok found a delimiter. delimiters may vary from a call to another. Parameters. string Null-terminated string to scan. separator Null-terminated string containing the separators. Return Value. A pointer to the last token found in string. NULL is returned when there are no more tokens to be found. Portability. Defined in ANSI-C.


What cannot be used in a folder name?

The delimiters: "" and "/".


What is the difference between control characters and frame delimiters?

Yes we can differentiate the control character from frame delimiters, as there is need to distinguish between data being send and control information so frame delimiters arrange for sending side to change the data slightly before it is sent


What is the median for 13669111215?

Unfortunately there are no delimiters between the numbers.


Php scripts are surrounded by delimiters which?

Usually <?php ... ?> or <? ... ?>


Are tags commas semicolons and spaces a common delimiters in access?

In Microsoft Access, common delimiters for separating values in a text field include commas, semicolons, and spaces. These delimiters are often used when importing or exporting data between Access and other applications. It's important to choose a delimiter that will not conflict with the actual data being stored.


Can a delimited file be a file where the length of a file is limited?

Yes, it can be. In computer programming, the term delimited refers to a file in which individual data values have embedded delimiters. The delimiters can be quotation marks, commas and tabs. Deliminters are used to separate words or phrases in a string of contiguous character data to define the beginning or end. Delimited text files are also called delimiter-separated values file (CSV or DSM).


What are tokens in java?

TokenizingTokenizing is the process of taking big pieces of source data, breaking them into little pieces, and storing the little pieces in variables. Probably the most common tokenizing situation is reading a delimited file in order to get the contents of the file moved into useful places like objects, arrays or collections. We'll look at two classes in the API that provide tokenizing capabilities: String (using the split() method) and Scanner, which has many methods that are useful for tokenizing.Tokens and DelimitersWhen we talk about tokenizing, we're talking about data that starts out composed of two things: tokens and delimiters. Tokens are the actual pieces of data, and delimiters are the expressions that separate the tokens from each other. When most people think of delimiters, they think of single characters, like commas or backslashes or maybe a single whitespace. These are indeed very common delimiters, but strictly speaking, delimiters can be much more dynamic. In fact, delimiters can be anything that qualifies as a regex expression. Let's take a single piece of source data and tokenize it using a couple of different delimiters:source: "one,two,three,four"If we say that our delimiter is a comma, then our four tokens would beonetwothreefourIn general, when we tokenize source data, the delimiters themselves are discarded, and all that we are left with are the tokens.


How do you count the number of words in a string?

To find the length of the string we use length method. The length property returns the length of a string (number of characters we use).The length of an empty string is 0. For example: function myFunction() { var str = "Hello World!"; var n = str.length; Hope this hepls.


What causes the error .htaccess RewriteCond bad flag delimiters when blocking user agents using .htaccess?

badflag delimiters normally means you have an extra or unescaped space in the rewritecond regex pattern, or a missing [ or ]


What is meant by delimiter?

A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions in plain text or other data ... delimiters are used in java to split one large string into smaller ones. ex: "val1;val2;val3" the above string can be broken down into 3 small strings val1, val2 and val3. here semicolon is the delimiter