answersLogoWhite

0

* In computer programming and some branches of mathematics, a string is an ordered sequence of symbols. ...

en.wikipedia.org/wiki/Text_string * An array of characters referenced by a pointer and a length word. A text string may contain up to 32,767 bytes of character data. ...

developer.apple.com/DOCUMENTATION/mac/Text/Text-593.html * character string enclosed in quotation marks or character variable name; the text that you want to display.

www.sfu.ca/sasdoc/sashtml/gref/z0218120.htm

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

How do you use string in visual basic?

A string is a data set in the form of alphanumeric characters and symbols. For example, if you wanted to use a string to concatenate and display a welcome message displaying a user's name, your code would look something like this: Dim WelcomeMessageString as String = "Welcome to the string demonstration " Dim FormResponseString as String = form1.text Message(WelcomeMessageString + FormResponseString)


What is a name for a variable used for storing text?

string


Two pre-defined functions in visual basic?

A string is a line of text. For example: Dim example As String = "whatever text you want" Would make a string that says "whatever text you want" Later, you can use this for a msgbox or textbox Example: TextBox1.Text = example '(that is the string we made) or MsgBox(example, MsgBoxStyle.Information, "Note!") '(would display a msgbox containing the text in the string)


How do you declare the text in vb?

In Visual Basic (VB), you can declare a text variable using the Dim statement followed by the variable name and the As String type. For example: Dim myText As String. You can then assign a value to it, like myText = "Hello, World!". This allows you to store and manipulate string data within your program.


Write a PHP program to check whether the number is palindrome or not?

This program only suits PHP. If you want a proper one try C program for it available on web <body> <?php if(isset($_POST['submit'])) { $text = $_POST['text']; $string = mysql_real_escape_string($text); $invert = strrev($string); if($string == $invert) { echo "<br>Given number is a palindrome!!"; } else { echo "<br>Given number is not a palindrome!!"; } } ?> <form method="post"> <input type="text" name="text" id="text" /> <input type="submit" name="submit" value="Submit" id="submit" onclick="<?php $_SERVER['PHP_SELF']; ?>" /> </form> </body>

Related Questions

What do you mean by string in java programming?

A "string" in any programming language is a line of text.


A text string contains a string of text?

text data


What is string function visual basic?

A string is a line of text. For example: Dim example As String = "whatever text you want" Would make a string that says "whatever text you want" Later, you can use this for a msgbox or textbox Example: TextBox1.Text = example '(that is the string we made) or MsgBox(example, MsgBoxStyle.Information, "Note!") '(would display a msgbox containing the text in the string)


What are differences between replace and substitute Microsoft Excel functions?

The Replace function replaces part of a text string, based on the number of characters you specify, with a different text string. The Substitute function substitutes newtext for old text in a text string. You use Substitute when you want to replace specific text in a text string and you use Replace when you want to replace any text that occurs in a specific location in a text string.


What is a text string in Excel?

It is simply a piece of text. You can use a piece of text in formulas for doing things. There are specific functions for dealing with text. If you use a piece of text directly in them, as opposed to a cell reference to a cell that has text, the text will be enclosed in quotation marks and can be referred to as a text string. To find a length of a text string you could use the LEN function like this: =LEN("How long is this text string?")


What is string variables?

A string variable is a programming language construct that holds text. For example, the text "The sky is blue" could be stored to a string variable, then later in the program, that text could be displayed.


How do you delete a single text on your iPhone?

to delete a single text withing a string of text messages click the "edit" button in the string and select and delete


Which text function replaces text in a string?

The REPLACE function.


How do you set a string to the same text as a NStextview?

To set a string to the same text as an NSTextView in macOS development, you can use the string property of the NSTextView. For example, if you have an NSTextView instance called textView, you can retrieve its text by using let textString = textView.string. To set the text of an NSTextView, you can simply assign a new string using textView.string = "Your new text here".


What is global string?

In a database, it is a string of text that is the same throughout the database.


Can you please make a sample program for this?

public class MyClass() {private String text;public MyClass(String text) {// Note the use of this to clarify which text object you are referring to.this.text = text;}}


In a spreadsheet ordinary text is called?

Ordinary text is usually called a string in computers.