Definition of String

Babylon English
string
v. furnish with strings; tie with a string; hang or suspend; stretch from one point to another; thread onto a string (i.e. beads); arrange in a series; stretch, extend
n. cord; something resembling a cord or thread; fiber of a plant; group of objects linked together; series of connected events; chain of characters which are processed as one unit (Computers)

Search Dictionary:
Search Web Search Dictionary



String definition was found in categories: Computer & Internet(5)  Language, Idioms & Slang(6)  Science & Technology(3)  Business & Finance(1)  Arts & Humanities(1)  Entertainment & Music(2)  Social Science(1)  Society & Culture(1)  Sports(1)  Encyclopedia(1)  

String Definition from Computer & Internet Dictionaries & Glossaries

FOLDOC
string
<programming> A sequence of data values, usually bytes, which usually stand for characters (a "character string"). The mapping between values and characters is determined by the character set which is itself specified implcitly or explicitly by the environment in which the string is being interpreted.
The most common character set is ASCII but, since the late 1990s, there has been increased interest in larger character sets such as Unicode where each character is represented by more than eight bits.
Most programming languages consider strings (e.g. "124:shabooya:\n", "hello world") basically distinct from numbers which are typically stored in fixed-length binary or floating-point representation.
bit string is a sequence of bits.
(1999-12-21)

Vb Glossary 1.0
string
A data type consisting of a sequence of contiguous characters that represent the characters themselves rather than their numeric values. A String can include letters, numbers, spaces, and punctuation. The String data type can store fixed-length strings ranging in length from 0 to approximately 63K characters and dynamic strings ranging in length from 0 to approximately 2 billion characters. The dollar sign ($) type-declaration character represents a String in Visual Basic.

JDK Doc(JAVA)
String
- class java.lang..String 
public final class String extends Object implements Serializable , Comparable 
Tree:java.lang.Object - java.lang.String
The String class represents character strings. All string literals in Java programs, such as "abc", are implemented as instances of this class.

String()
- Constructor for class java.lang.String 
public String ()
Initializes a newly created String object so that it represents an empty character sequence.

String(String)
- Constructor for class java.lang.String 
public String (String  value)
Initializes a newly created String object so that it represents the same sequence of characters as the argument; in other words, the newly created string is a copy of the argument string.Parameters: value - a String.

String(StringBuffer)
- Constructor for class java.lang.String 
public String (StringBuffer  buffer)
Allocates a new string that contains the sequence of characters currently contained in the string buffer argument. The contents of the string buffer are copied; subsequent modification of the string buffer does not affect the newly created string.Parameters: buffer - a StringBuffer.Throws: NullPointerException - If buffer is null.

String(byte[])
- Constructor for class java.lang.String 
public String (byte[] bytes)
Construct a new String by converting the specified array of bytes using the platform's default character encoding. The length of the new String is a function of the encoding, and hence may not be equal to the length of the byte array.Parameters: bytes - The bytes to be converted into charactersSince: JDK1.1

String(byte[], String)
- Constructor for class java.lang.String 
public String (byte[] bytes, String  enc) throws UnsupportedEncodingException 
Construct a new String by converting the specified array of bytes using the specified character encoding. The length of the new String is a function of the encoding, and hence may not be equal to the length of the byte array.Parameters: bytes - The bytes to be converted into characters - A character-encoding nameenc - A character-encoding nameThrows: UnsupportedEncodingException - If the named encoding is not supportedSince: JDK1.1

String(byte[], int)
- Constructor for class java.lang.String 
public String (byte[] ascii, int hibyte)
Deprecated.  This method does not properly convert bytes into characters. As of JDK 1.1, the preferred way to do this is via the String constructors that take a character-encoding name or that use the platform's default encoding.Allocates a new containing characters constructed from an array of 8-bit integer values. Each character in the resulting string is constructed from the corresponding component in the byte array such that: Allocates a new String containing characters constructed from an array of 8-bit integer values. Each character cin the resulting string is constructed from the corresponding component b in the byte array such that: Parameters: ascii - the bytes to be converted to characters. - the top 8 bits of each 16-bit Unicode character.hibyte - the top 8 bits of each 16-bit Unicode character.Throws: NullPointerException - If ascii is null.See Also:  String(byte[], int, int, java.lang.String) , String(byte[], int, int) , String(byte[], java.lang.String) , String(byte[])

String(byte[], int, int)
- Constructor for class java.lang.String 
public String (byte[] bytes, int offset, int length)
Construct a new String by converting the specified subarray of bytes using the platform's default character encoding. The length of the new String is a function of the encoding, and hence may not be equal to the length of the subarray.Parameters: bytes - The bytes to be converted into characters - Index of the first byte to convertoffset - Index of the first byte to convert - Number of bytes to convertlength - Number of bytes to convertSince: JDK1.1

String(byte[], int, int, String)
- Constructor for class java.lang.String 
public String (byte[] bytes, int offset, int length, String  enc) throws UnsupportedEncodingException 
Construct a new String by converting the specified subarray of bytes using the specified character encoding. The length of the new String is a function of the encoding, and hence may not be equal to the length of the subarray.Parameters: bytes - The bytes to be converted into characters - Index of the first byte to convertoffset - Index of the first byte to convert - Number of bytes to convertlength - Number of bytes to convert - The name of a character encodingenc - The name of a character encodingThrows: UnsupportedEncodingException - If the named encoding is not supported IndexOutOfBoundsException if the offset and count arguments index characters outside the bounds of the value array.Since: JDK1.1

String(byte[], int, int, int)
- Constructor for class java.lang.String 
public String (byte[] ascii, int hibyte, int offset, int count)
Deprecated.  This method does not properly convert bytes into characters. As of JDK 1.1, the preferred way to do this is via the String constructors that take a character-encoding name or that use the platform's default encoding.Allocates a new constructed from a subarray of an array of 8-bit integer values. Allocates a new String constructed from a subarray of an array of 8-bit integer values. The offset argument is the index of the first byte of the subarray, and the count argument specifies the length of the subarray. Each byte in the subarray is converted to a char as specified in the method above.Parameters: ascii - the bytes to be converted to characters. - the top 8 bits of each 16-bit Unicode character.hibyte - the top 8 bits of each 16-bit Unicode character. - the initial offset.offset - the initial offset. - the length.count - the length.Throws: IndexOutOfBoundsException - if the offset or count argument is invalid. - if is .NullPointerException - if ascii is null.See Also:  String(byte[], int) , String(byte[], int, int, java.lang.String) , String(byte[], int, int) , String(byte[], java.lang.String) , String(byte[])

String(char[])
- Constructor for class java.lang.String 
public String (char[] value)
Allocates a new String so that it represents the sequence of characters currently contained in the character array argument. The contents of the character array are copied; subsequent modification of the character array does not affect the newly created string.Parameters: value - the initial value of the string.Throws: NullPointerException - if value is null.

String(char[], int, int)
- Constructor for class java.lang.String 
public String (char[] value, int offset, int count)
Allocates a new String that contains characters from a subarray of the character array argument. The offset argument is the index of the first character of the subarray and the count argument specifies the length of the subarray. The contents of the subarray are copied; subsequent modification of the character array does not affect the newly created string.Parameters: value - array that is the source of characters. - the initial offset.offset - the initial offset. - the length.count - the length.Throws: IndexOutOfBoundsException - if the offset and count arguments index characters outside the bounds of the value array. - if is .NullPointerException - if value is null.

DW and OLAP terms
string
A set of contiguous bytes that contain a single character-based or binary data value. In character strings, each byte, or pair of bytes, represents a single alphabetic letter, special character, or number. In binary strings, the entire value is considered to be a single stream of bits that do not have any inherent pattern. For example, the constant 'I am 32.' is an 8 byte character string, while the constant 0x0205efa3 is a 4 byte binary string.

Panda Software Glossary
String
A sequence of characters (letters, numbers, punctuation marks etc.).


String Definition from Language, Idioms & Slang Dictionaries & Glossaries

Webster's Revised Unabridged Dictionary (1913)
String
(n.)
A fiber, as of a plant; a little, fibrous root.
  
(n.)
A nerve or tendon of an animal body.
  
(n.)
A small cord, a line, a twine, or a slender strip of leather, or other substance, used for binding together, fastening, or tying things; a cord, larger than a thread and smaller than a rope; as, a shoe string; a bonnet string; a silken string.
  
(n.)
A small, filamentous ramification of a metallic vein.
  
(n.)
A strip, as of leather, by which the covers of a book are held together.
  
(n.)
A thread or cord on which a number of objects or parts are strung or arranged in close and orderly succession; hence, a line or series of things arranged on a thread, or as if so arranged; a succession; a concatenation; a chain; as, a string of shells or beads; a string of dried apples; a string of houses; a string of arguments.
  
(n.)
An inside range of ceiling planks, corresponding to the sheer strake on the outside and bolted to it.
  
(n.)
Same as Stringcourse.
  
(n.)
The cord of a musical instrument, as of a piano, harp, or violin; specifically (pl.), the stringed instruments of an orchestra, in distinction from the wind instruments; as, the strings took up the theme.
  
(n.)
The line or cord of a bow.
  
(n.)
The points made in a game.
  
(n.)
The tough fibrous substance that unites the valves of the pericap of leguminous plants, and which is readily pulled off; as, the strings of beans.
  
(v. t.)
To deprive of strings; to strip the strings from; as, to string beans. See String, n., 9.
  
(v. t.)
To furnish with strings; as, to string a violin.
  
(v. t.)
To make tense; to strengthen.
  
(v. t.)
To put in tune the strings of, as a stringed instrument, in order to play upon it.
  
(v. t.)
To put on a string; to file; as, to string beads.
  

WordNet 2.0
string

Noun
1. a lightweight cord
(synonym) twine
(hypernym) cord
(hyponym) chalk line, snap line, snapline
2. stringed instruments that are played with a bow; "the strings played superlatively well"
(synonym) bowed stringed instrument
(hypernym) stringed instrument
(hyponym) bass fiddle, bass viol, bull fiddle, double bass, contrabass, string bass
(part-meronym) fingerboard
3. a tightly stretched cord of wire or gut, which makes sound when plucked, struck, or bowed
(hypernym) cord
(hyponym) snare
(part-holonym) stringed instrument
4. a sequentially ordered set of things or events or ideas in which each successive member is related to the preceding; "a string of islands"; "train of mourners"; "a train of thought"
(synonym) train
(hypernym) series
(derivation) string up
5. a linear sequence of symbols (characters or words or phrases)
(hypernym) sequence
(hyponym) extension, filename extension, file name extension
(part-meronym) language unit, linguistic unit
6. a tie consisting of a cord that goes through a seam around an opening; "he pulled the drawstring and closed the bag"
(synonym) drawstring, drawing string
(hypernym) tie
(hyponym) purse string
(part-holonym) drawstring bag
7. a collection of objects threaded on a single strand
(hypernym) collection, aggregation, accumulation, assemblage
(hyponym) beads, string of beads
8. a necklace made by a stringing objects together; "a string of beads"; "a strand of pearls";
(synonym) chain, strand
(hypernym) necklace
(derivation) thread, draw

Verb
1. thread on or as if on a string; "string pearls on a string"; "the child drew glass beads on a string"; "thread dried cranberries"
(synonym) thread, draw
(hypernym) arrange, set up
(hyponym) bead
(verb-group) guide, run, draw, pass
(derivation) chain, strand
2. add as if on a string; "string these ideas together"; "string up these songs and you'll have a musical"
(synonym) string up
(hypernym) add
(derivation) train
3. move or come along
(synonym) string along
(hypernym) advance, progress, pass on, move on, march on, go on
4. stretch out or arrange like a string
(hypernym) arrange, set up
(see-also) string out, spread out
5. string together; tie or fasten with a string; "string the package"
(hypernym) fasten, fix, secure
(derivation) twine
6. remove the stringy parts of; "string beans"
(hypernym) remove, take, take away, withdraw
7. provide with strings; "string my guitar"
(antonym) unstring
(hypernym) change, alter, modify

Australian Slang
How long is a piece of string?
this statement is said when someone asks you when
something will be finnished, and it's one of those jobs that is finished when it's finished (impossible to determine a time)


String of pearls
(crass) blobs or beads of sperm ejaculated on the chest of a sexual partner

hEnglish - advanced version

Concise English-Irish Dictionary v. 1.1
string
sreangán, téad

JM Welsh <=> English Dictionary
Corden
Corden = n. rope, string

Cordyn
Cordyn = n. a cord, a string

Cyweirdant
Cyweirdant = n. a key string

Gleindorch
Gleindorch = n. a string of beads

Llinyn
Llinyn = n. a line; a string

Llinynu
Llinynu = v. to line, to string

Llorfdant
Llorfdant = n. base string of a harp

Llyfan
Llyfan = n. a string, a rope

Llyfanu
Llyfanu = v. to string, to bind

Pari
Pari = n. a string, a drove, a flock

Tant
Tant = n. stretch; start; spasm, throb. Tant telyn, harp string

Tantawr
Tantawr = n. a player on string music, musician


String Definition from Science & Technology Dictionaries & Glossaries

Oil and Gas Field Glossary
String
The makeup of a specific length of coiled tubing used for well intervention or other concentric wellbore operations.

Dictionary of Automotive Terms
String
A thin length of twisted fiber.

Telecommunication Standard Terms
string
sequence of data elements, such as bits or characters, considered as a whole.


String Definition from Business & Finance Dictionaries & Glossaries

Glossary of petroleum Industry
String
the entire length of casing, tubing, or drill pipe run into a hole; the casing string. Compare drill string and drill stem.


String Definition from Arts & Humanities Dictionaries & Glossaries

English-Latin Online Dictionary
string
ligamen, funiculus


String Definition from Entertainment & Music Dictionaries & Glossaries

american horse racing dictionary
STRING
The horses trained by one trainer or owned by one owner

English - Klingon
string
n. SIrgh


String Definition from Social Science Dictionaries & Glossaries

Phobia
Cnidophobia
Fear of strings

Linonophobia
Fear of string


String Definition from Society & Culture Dictionaries & Glossaries

cigar terms
String
see Armatha


String Definition from Sports Dictionaries & Glossaries

Bowling Termes 1.0
String
Three or more consecutive strikes. Also, in some areas, one game of bowling.


String Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
String
Generally, string is a thin, flexible piece of rope or twine which is used to tie, bind, or hang other objects. String can be made from a variety of fibres.

Examples of string use include:

  • String figures, designs formed by weaving string around one's fingers
  • bow string, an essential part of a bow.
  • In musical instruments such as below.

String may also refer to:
In science, computers or mathematics:


See more at Wikipedia.org...