A-level Computing/AQA/Paper 1/Fundamentals of programming/String-handling
String handling functions
editVery popular examination questions involve manipulating strings. These simple functions will help you with this task.
Length
editThis function is used to find the length of any string you pass it, counting all the characters, including the spaces. In visual basic to find the length of a string we use the Len("some string")
function that returns the integer length of the string that it has been passed:
someText = "Gary had a little lamb"
Console.writeline(Len(someText))
22
Position
editThis function allows us to find the position of an item within a given string and returns the position's location. In visual basic this is performed by the following command:
InStr([string], [item])
For example we might want to find the location of an end of a sentence by looking for a fullstop:
someText = "Gary had a little lamb. His fleece was white as snow."
Console.writeline(InStr(someText,"."))
23
We can also use this command to search for strings within strings. For example if we were to look for to see if a sentence contained a certain name:
someText = "Gary had a little lamb. Dave's fleece was white as snow."
Console.writeline(InStr(someText,"Dave"))
25
If the search item is not contained in the string then it will return 0
someText = "Gary had a little lamb. Dave's fleece was white as snow."
Console.writeline(InStr(someText,"Julie"))
0
Substring
editThis function allows you to snip items out of a string and return a substring. Visual Basic uses the following command:
[string].Substring([startPosition],[lengthOfReturnString])
.
For example we might want to find the local number from a landline phone number we have been given. We'll have to ignore the area code:
phone = "(01234)567890"
local = phone.Substring(7, 6)
console.writeline(local)
567890
Concatenation
editThis function allows you to stick strings together (concatenate) so that you can start to build strings using variables. Visual Basic uses the following command:
[stringA & stringB]
For example we might have a users name stored in a variable dim name as string
and a greeting that we would like to give them:
name = "Charles"
console.writeline("Hello " & name & ". How are you today?")
Hello Charles. How are you today?
String conversion functions
editWhen you declare a variable you give it a datatype. This datatype restricts the values that you can place into the variable. For example:
dim age as integer
- would allow:
age = 34
- would NOT allow:
age = "cabbages"
This seems to make sense, but what would happen when you try to place a real number into a integer:
dim age as integer
age = 34.3
console.writeline(age)
34
This might seem OK, but in other languages we might run into trouble. To perform this we would have to convert from one datatype to another:
dim age as decimal
age = 34.3
console.writeline(age)
age = CInt(34.3) 'converts the decimal into an integer
console.writeline(age)
34.3 34
Exercise: String functions Write a short program to tell someone how many letters they have in their name (just in case they don't know!), for example:
Code Output
Input: Fremlin Answer: Dim name As String
console.write("Input: ")
name = console.readline()
console.writeline("Hello " & name & " you have " & Len(name) & " letters in your name.")
Some people have stupidly typed their firstname and their surname into a database, write some code to display the first name, then their surname dim fistname as string = "Elizabeth Sheerin"
Code Output
Input: Elizabeth Sheerin Answer: Dim name As String = "Elizabeth Sheerin"
Dim firstname, secondname As String
Dim space, textlength As Integer
space = InStr(name, " ")
textlength = Len(name)
firstname = name.Substring(0, space)
secondname = name.Substring(space, textlength - space)
Console.WriteLine("first name is: " & firstname)
Console.WriteLine("second name is: " & secondname)
A telephone number has been typed into a computer as a string: (01234)567890 dim phonenum as string = "(01234)567890"
Write some code to output the number without brackets:
Code Output
Input: (01234)567890 Answer: Dim phonenum As String = "(01234)567890"
Dim firstbracket, secondbracket As String
Dim textlength, arealength As Integer
firstbracket = InStr(phonenum, "(")
secondbracket = InStr(phonenum, ")")
textlength = Len(phonenum)
arealength = secondbracket - firstbracket
Console.Write(phonenum.Substring(firstbracket, arealength - 1) & phonenum.Substring(secondbracket, textlength - secondbracket))
A similar question to the one above, telephone numbers are currently stored in a very unreadable format: 01234567890, completely missing off the area code. Can you convert them to display the first 5 figures are the area code: dim phonenum as string = "01234567890"
This should then be output as:
Code Output
Input: 01234567890 Answer: Dim phonenum As String = "01234567890"
Console.Write("(" & phonenum.Substring(0, 5) & ")" & phonenum.Substring(6, 5))
Console.ReadLine()
A palindrome is a word, phrase or number that may be read the same way in either direction. For example 1234321, RACECAR, TOOT and NUN. You need to write a program that checks to see if any input given is a palindrome and let the user know:
Code Output
Input: NUN Answer: Dim name As String
Dim length As Integer
Dim Pal As Boolean = TRUE
console.write("Input: ")
name = console.readline()
length = Len(name)
For x = 0 to (length / 2)
If name.Substring(x, 1) != name.Substring(length - x, 1) then
Pal = FALSE
End If
Next
If Pal then
console.writeline("That is a palindrome!")
Else
console.writeline("That is NOT a palindrome!")
End If
|
Extension: REGEX You will often want to check the format of a string being input and if it is incorrect you will want it to be submitted again. For example you might want someone to input the name of their best friend, meaning that they shouldn't be inputting any letters or spaces, and it should start with a capital letter:
Code Output
Name of best friend: Beanie(CORRECT) To do this we can match the input string against some rules, regular expressions or regex, in this case we only want characters from the alphabet:
Breaking apart the rule:
Another example might be checking for the correct spelling of a famous composer: "Handel", "Händel", and "Haendel" We can check this using the pattern
Most regular expression tools provide the following operations to construct expressions. Boolean "or" A vertical bar separates alternatives. For example, Grouping Parentheses are used to define the scope and precedence of the operators (among other uses). For example, Quantification A quantifier after a token (such as a character) or group specifies how often that preceding element is allowed to occur.
Most programming languages have regular expression functions. In VB.NET we can use regular expressions by using the Regex routine: ' this code enforces the name rule from earlier
Dim name As String
Console.Write("Name of best friend: ")
name = Console.Readline()
' match the string against a regular expression
Dim m As Match = Regex.Match(name, "[A-Z][a-z]+")
If (m.Success) Then
Console.WriteLine("You have input the name correctly")
Else
Console.WriteLine("Incorrect format!")
End If
A common use for regular expressions is in checking that you have a correctly typed email address. A rule for that is this: You can find out more about Regular expression on wikipedia and you will cover regular expressions in more detail in A2. |
to/from integer, real, date/time.