Jodi_the_g
Member
Registered: 7th Aug 01
Location: Washington D.C
User status: Offline
|
I have a file with data such as
'b11224984908948092
I have coded so the file is loaded and read row by row
using
rowFromFile=textInput.ReadLine
do you know how I could select a certain charater in that line say the first 1 and ingore the rest
something like 'rowFromFile, Chr(2))'
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
use the mid() function 
example -
sString = "b11224984908948092"
Mid(sString, 1, 1) would equal "b" etc
[Edited on 14-02-2008 by Dom]
|
James
Member
Registered: 1st Jun 02
Location: Surrey
User status: Offline
|
In C# you can just do it like this:
stringOne[10]
Would get you the 10th character in a string variable called stringOne.
|