Need to parse CSV (Comma Separated Values) files in C#? There are many solutions starting from the OLE DB adapter, but here's an easy-to-use CSV Parser written in pure C#: CSVReader.cs. Now, here's a quick tutorial.
First, let's recite the rules of CSV: Each line in a text file represents a record. The fields on each line are separated by commas. If a field starts by a double quote ("), the field ends when the next quote is encountered. If you need to embed a quote inside a quoted field, use a double quote (""). Take for example the next trivial CSV file:
my fields,go,here John said: "Don't move","""I won't"", he replied"
The first line parses into three separate fields ("my fields", "go", "here"). The second one is trickier, but it produces two values. You need to note that the quotes in the first field (John said: "Don't move") do not mean field boundaries. The behavior would be different if a double quote started the field, as it does for the second field ("I won't", he replied). This is why the quotes don't need doubling for the first field.
Now, the CSVReader class can be used to read the file like this:
using (CSVReader csv = new CSVReader(@"c:\myfile.csv")) {
string[] fields;
while ((fields = csv.GetCSVLine()) != null) {
Console.WriteLine("New CSV line begins");
foreach (string field in fields)
Console.WriteLine("CSV field: " + field);
}
}
And as you can guess, the code produces output like this:
New CSV line begins CSV field: my fields CSV field: go CSV field: here New CSV line begins CSV field: John said: "Don't move" CSV field: "I won't", he replied
As usual, feedback and/or bug reports are welcome.
Posted by Jouni Heikniemi at October 23, 2004 12:34 PMGreate Software! Thank you for sharing it!
A verry little improvement could be to make the separating char adjustable:
public char Separator
{
get
{
return separator;
}
set
{
separator = value;
}
}
#region Private variables
private char separator = ',';
...
int nextComma = data.IndexOf(separator, fromPos);
Yeah Frank, I was thinking about the same thing as well. I'll probably devise something like that for the next JHLib release of the CSVParser.
Posted by: Jouni at November 16, 2004 07:08 PMGood stuff, my compliments on some well-written code.
I realise this might sound trivial, but just to cover my bases:- under what license can I include and re-distribute your code?
Posted by: Akshay at November 19, 2004 05:28 AMThe newest version of the code was posted in the JHLib collection. I suggest you use JHLib's version, as it has been corrected according to FxCop rules and suggestions (i.e. it fits the generic Microsoft library conventions better). The changes are fairly trivial, though - if you've already taken this code, you're not missing out on much (apart from possible future updates).
JHLib's license statement applies here, too: "JHLib is free. It is not released under any formal license such as GPL; it's just plainly and simply free. You can do whatever you wish with the code; I don't offer support or carry responsibility for anything related to the source or the binaries. That said, I'm naturally interested in feedback and suggestions, as well as your own code changes. Also, it would be nice to hear if you start using the library somewhere - it always gives ideas for further development."
(from http://www.heikniemi.net/jhlib/)
Feel free to mail me if you need any further help.
Posted by: Jouni at November 19, 2004 07:35 AMhi jouni!
nice class! i am using it in a customer-project. since one requirement was that there can be spaces between commas and datafields. since your class got confused with that, i improved it a little bit to handle that requirement. if you are interested, send me an email and i will send you the modified version..
best regards,
robin
Yeah, this is a really good class. I made a simple modification for it to accept a string from the code and parse that string only. Everything works perfect now. Thanks a bunch.
Posted by: Dane Paul at December 16, 2004 06:01 PMOne problem I see with your class is that if I want to read the Nth line, I need to parse N-1 lines even if I don't care about them.
Posted by: Baz at January 4, 2005 02:51 PMEasy to use but I found a problem parsing the following line, it could be solved by adding one line of code shown below.
"Distance Offset = -21.466 m,,,,,,,,,,,,,,,,,,,,"
// If we're at the end of the string, let's consider this a field that
// only contains the quote
if (fromPos == data.Length-1) {
startSeparatorPosition = fromPos; // Add this line
fromPos++;
return "\"";
}
Hello,
I am trying to use your code here to parse a certain line. The line itself comes from a user selecting some rows in an open Excel file and dropping them onto my form.
Anyway, the line looks like this:
"""TE,ST""",q,1,",",",/, ,","
This line corresponds to the row in Excel, which has these values (each line represents a value from A1 to H1):
"TE,ST"
q
1
"
,
/
,
Now, when this line is parsed, I get back 7 values, as follows:
"TE,ST"
q
1
,
,/, ,
"
Is there any way that your code could be changed to handle this case correctly, or is it too complicated?
Thanks for the help.
I've heard the same being said by somebody else. A guy whose name I don't remember sent me email a couple of months ago and told me he changed the parser to accept Excel-originated CSV without a hitch. He promised to send me the updated source but never did.
Thanks for the test case though; I'm pretty sure the code can be changed to do what you wish. I have plans to collect up all the recent cases and make fixes so that they all work. No promises on the timeframe though, I'm pretty busy these days. If you hack the code yourself, please do mail me the source if you can. :-)
Posted by: Jouni at February 5, 2005 07:56 AMNice work Jouni.
Posted by: Rob Mello at April 14, 2005 10:30 PMNice piece of work.
If I want to parse only from the third line of my CSV file, how would I do it using this code?. Any suggestions?
Thanks,
-Abi
BUG: I heave esported a multiline textbox field and the result is this:
Name,FamilyName,Tel,Note
John,Holmes,5552522,"test note
note note"
I thing that the problem is the char "\n" and the file reader is able to read 1 line at time.
Posted by: PaLoMo2 at April 26, 2005 05:41 PMBUG: I heave esported a multiline textbox field and the result is this:
Name,FamilyName,Tel,Note
John,Holmes,5552522,"test note
note note"
I thing that the problem is the char "\n" and the file reader is able to read 1 line at time.
Posted by: PaLoMo2 at April 26, 2005 05:43 PMHi,
thanks for the code. It doesn't seem to cope with double quotes within double quotes. See example. The 5 field is split into 2.
"20000083","HEATHER SMITH MAIL RETURNED","","18 DURBAN WAY 10 APR'97","MINTO "LEFT ADDRESS"","MADE CLASS 9","NSW","2566","","","","",0.00
Posted by: Dick Walker at May 15, 2005 11:04 AMCool code...thanks!
If you want to make sure you won't be there a good while, change the sample code to use a stringbuilder, something like:
private void button1_Click(object sender, System.EventArgs e)
{
using (CSVReader csv = new CSVReader(@"c:\Test1.csv"))
{
string[] fields;
int linenumber = 0;
System.Text.StringBuilder sb = new System.Text.StringBuilder();
while ((fields = csv.GetCSVLine()) != null)
{
linenumber++;
sb.Append("CSV Line Number " + linenumber.ToString() + " begins ********************\n");
foreach (string field in fields)
sb.Append("--------- CSV field: " + field + "\n");
}
txt1.Text += sb.ToString();
}
}
Doesnt support records spread out across multiple lines. :|
Posted by: E at July 29, 2005 05:38 AMJust stubmled at this code, 'cause i'm too lazy to write csv reader from scratch.
Line:
if (i < data.Length - 1 && data[i + 1] == '"')
should be changed to:
if (i < data.Length - 1 && (data[i + 1] == '"' || data[i - 1] == '\\'))
This way reader can reckognize more accurately quotes embedded in string. Hope this helps...
Posted by: Nemanja at September 24, 2005 10:54 PMThanks!!
Posted by: Lee Newman at November 11, 2005 03:10 PMhttp://aclehrinulods.inicemirors.com
http://aclishel.inicemirors.com
http://acristosel.inicemirors.com
http://aelshontils.inicemirors.com
http://aghiehor.inicemirors.com
http://akshextiry.inicemirors.com
http://aktubrescir.inicemirors.com
http://alentodism.inicemirors.com
http://alerogisud.inicemirors.com
http://allegoriwny.inicemirors.com
http://allessuns.inicemirors.com
http://alollis.inicemirors.com
http://ambemnony.inicemirors.com
http://ambleung.inicemirors.com
http://amisteotuns.inicemirors.com
http://amurning.inicemirors.com
http://ancelirs.inicemirors.com
http://ancilod.inicemirors.com
http://andessoms.inicemirors.com
http://soihang.inicemirors.com
http://solacrephs.inicemirors.com
http://solicteug.inicemirors.com
http://sonaplur.inicemirors.com
http://sonecad.inicemirors.com
http://sopimalecung.inicemirors.com
http://sosceni.inicemirors.com
http://sotenaziry.inicemirors.com
http://sotritaeg.inicemirors.com
http://spacks.inicemirors.com
http://spelisyotar.inicemirors.com
http://spengis.inicemirors.com
http://spesm.inicemirors.com
http://spheivos.inicemirors.com
http://spicagunes.inicemirors.com
http://spifolacy.inicemirors.com
http://spironseng.inicemirors.com
http://spisols.inicemirors.com
http://splakolyre.inicemirors.com
http://spotellics.inicemirors.com
http://spoticest.inicemirors.com
http://sqolcad.inicemirors.com
http://stamepitogby.inicemirors.com
http://stan.inicemirors.com
http://stantink.inicemirors.com
http://staphitheng.inicemirors.com
http://stapoicens.inicemirors.com
http://starensogyus.inicemirors.com
http://starret.inicemirors.com
http://stentotuts.inicemirors.com
http://sterpangs.inicemirors.com
http://stictufales.inicemirors.com
http://stiklochem.inicemirors.com
http://stinotezuas.inicemirors.com
http://stipes.inicemirors.com
http://stiusoze.inicemirors.com
http://stoghimatery.inicemirors.com
http://storgling.inicemirors.com
http://strobsuts.inicemirors.com
http://stytorise.inicemirors.com
http://suckyletom.inicemirors.com
http://suns.inicemirors.com
http://sunspanilec.inicemirors.com
http://suphiler.inicemirors.com
http://suppirranten.inicemirors.com
http://sweylita.inicemirors.com
http://swiste.inicemirors.com
http://syceat.inicemirors.com
http://synjateliltu.inicemirors.com
http://sythoe.inicemirors.com
http://syzaghiph.inicemirors.com
http://tachlicurep.inicemirors.com
http://tackibs.inicemirors.com
http://tackosir.inicemirors.com
http://taengospry.inicemirors.com
http://taipes.inicemirors.com
http://talpochick.inicemirors.com
http://taninty.inicemirors.com
http://tantoined.inicemirors.com
http://tarisujy.inicemirors.com
http://tarobbehulikycaes.inicemirors.com
http://taromulines.inicemirors.com
http://tasiconted.inicemirors.com
http://tatring.inicemirors.com
http://taxerovispy.inicemirors.com
http://tea.inicemirors.com
http://tectis.inicemirors.com
http://tedottily.inicemirors.com
http://tegis.inicemirors.com
http://teichosms.inicemirors.com
http://teimoganys.inicemirors.com
http://teliraus.inicemirors.com
http://telna.inicemirors.com
http://tepsuprah.inicemirors.com
http://terbay.inicemirors.com
http://terudis.inicemirors.com
http://tesanocins.inicemirors.com
http://tezahrins.inicemirors.com
http://thecram.inicemirors.com
http://thelirangs.inicemirors.com
http://thepo.inicemirors.com
http://thikacretylo.inicemirors.com
http://thiustolans.inicemirors.com
http://thomus.inicemirors.com
http://thratris.inicemirors.com
http://thrin.inicemirors.com
http://tibundayd.inicemirors.com
http://tidaesunypoil.inicemirors.com
http://tidepanury.inicemirors.com
http://tiesac.inicemirors.com
http://tikeltags.inicemirors.com
http://tikors.inicemirors.com
http://tilesudavon.inicemirors.com
http://tilneg.inicemirors.com
http://tings.inicemirors.com
http://tinkecasm.inicemirors.com
http://tiphaneorunt.inicemirors.com
http://tivympone.inicemirors.com
http://tocrirled.inicemirors.com
http://toelicabjud.inicemirors.com
http://toflabie.inicemirors.com
http://toitcets.inicemirors.com
http://tolkary.inicemirors.com
http://toratruis.inicemirors.com
http://tose.inicemirors.com
http://toxerbiha.inicemirors.com
http://tozzestiwy.inicemirors.com
http://tradenkostyns.inicemirors.com
http://trainethy.inicemirors.com
http://tretfitonang.inicemirors.com
http://triamec.inicemirors.com
http://trimnetar.inicemirors.com
http://trots.inicemirors.com
http://tuckonglasts.inicemirors.com
http://tuhinosecar.inicemirors.com
http://tuongs.inicemirors.com
http://twemytihon.inicemirors.com
http://tystille.inicemirors.com
http://uache.inicemirors.com
http://uatrestyns.inicemirors.com
http://ucebary.inicemirors.com
http://uctelosabiny.inicemirors.com
http://uctikyloess.inicemirors.com
http://uflectydalor.inicemirors.com
http://uglengs.inicemirors.com
http://uloewiras.inicemirors.com
http://ulvanthemins.inicemirors.com
http://umotagehs.inicemirors.com
http://umpsilen.inicemirors.com
http://unithose.inicemirors.com
http://unmestogribyd.inicemirors.com
http://untellin.inicemirors.com
http://untlira.inicemirors.com
http://uohrens.inicemirors.com
http://upseanos.inicemirors.com
http://urefolaby.inicemirors.com
http://urfalepios.inicemirors.com
http://urists.inicemirors.com
http://ushine.inicemirors.com
http://utelokag.inicemirors.com
http://utgoteim.inicemirors.com
http://utirasts.inicemirors.com
http://valednopy.inicemirors.com
http://valle.inicemirors.com
http://valnien.inicemirors.com
http://vardegrir.inicemirors.com
http://varyked.inicemirors.com
http://veccihang.inicemirors.com
http://vegho.inicemirors.com
http://vencatiros.inicemirors.com
http://verakityd.inicemirors.com
http://voerilan.inicemirors.com
http://wanglesirm.inicemirors.com
http://watlimesmy.inicemirors.com
http://werwulnos.inicemirors.com
http://wesaiss.inicemirors.com
http://wheat.inicemirors.com
http://whengs.inicemirors.com
http://wheracuos.inicemirors.com
http://whermis.inicemirors.com
http://whorisests.inicemirors.com
http://wighuppe.inicemirors.com
http://wioche.inicemirors.com
http://wipras.inicemirors.com
http://wirevosanyt.inicemirors.com
http://withrures.inicemirors.com
http://witraos.inicemirors.com
http://wordem.inicemirors.com
http://wostawris.inicemirors.com
http://wrillonars.inicemirors.com
http://wrocaps.inicemirors.com
http://wuspameg.inicemirors.com
http://ycakonts.inicemirors.com
http://yccuhim.inicemirors.com
http://ylsinceg.inicemirors.com
http://ynaxecs.inicemirors.com
http://zenahins.inicemirors.com
http://zihaluteng.inicemirors.com
http://zoliarebugyus.inicemirors.com
http://zoliasm.inicemirors.com
http://zontacieg.inicemirors.com
http://achrunes.ionlineisoa.net
http://pistrewas.ionlineisoa.net
http://pithoc.ionlineisoa.net
http://pitlassorte.ionlineisoa.net
http://pl.ionlineisoa.net
http://plaemurins.ionlineisoa.net
http://pnindarefoc.ionlineisoa.net
http://pnocles.ionlineisoa.net
http://pochne.ionlineisoa.net
http://poctergruck.ionlineisoa.net
http://poctires.ionlineisoa.net
http://poetlid.ionlineisoa.net
http://poffas.ionlineisoa.net
http://pohenit.ionlineisoa.net
http://pohralids.ionlineisoa.net
http://poidsletyl.ionlineisoa.net
http://poilet.ionlineisoa.net
http://poillers.ionlineisoa.net
http://ponies.ionlineisoa.net
http://ponisytal.ionlineisoa.net
http://poscuckes.ionlineisoa.net
http://poshasiec.ionlineisoa.net
http://posictajygerung.ionlineisoa.net
http://potug.ionlineisoa.net
http://praitrenog.ionlineisoa.net
http://prampems.ionlineisoa.net
http://prastreh.ionlineisoa.net
http://pream.ionlineisoa.net
http://prebitaflud.ionlineisoa.net
http://prechlipa.ionlineisoa.net
http://preihuy.ionlineisoa.net
http://preltha.ionlineisoa.net
http://prernasits.ionlineisoa.net
http://priopag.ionlineisoa.net
http://prirecobuss.ionlineisoa.net
http://prissont.ionlineisoa.net
http://prithasesm.ionlineisoa.net
http://pritoerdy.ionlineisoa.net
http://priuss.ionlineisoa.net
http://prohatitry.ionlineisoa.net
http://prosts.ionlineisoa.net
http://prubizefod.ionlineisoa.net
http://prurobelanyis.ionlineisoa.net
http://psanwiny.ionlineisoa.net
http://psioreng.ionlineisoa.net
http://puctons.ionlineisoa.net
http://purraws.ionlineisoa.net
http://pyinu.ionlineisoa.net
http://pyoqasiteun.ionlineisoa.net
http://pytikols.ionlineisoa.net
http://qensal.ionlineisoa.net
http://qilerthasm.ionlineisoa.net
http://qucke.ionlineisoa.net
http://quzartes.ionlineisoa.net
http://raclibsturben.ionlineisoa.net
http://racrest.ionlineisoa.net
http://raglit.ionlineisoa.net
http://raigy.ionlineisoa.net
http://rairdestygros.ionlineisoa.net
http://raletoc.ionlineisoa.net
http://randil.ionlineisoa.net
http://raniholy.ionlineisoa.net
http://raphodgerdils.ionlineisoa.net
http://rarmune.ionlineisoa.net
http://rasts.ionlineisoa.net
http://ratredungs.ionlineisoa.net
http://rattisedun.ionlineisoa.net
http://recan.ionlineisoa.net
http://recothunamiss.ionlineisoa.net
http://remandubins.ionlineisoa.net
http://rengs.ionlineisoa.net
http://renify.ionlineisoa.net
http://renumiad.ionlineisoa.net
http://reotrinnas.ionlineisoa.net
http://rephyst.ionlineisoa.net
http://reppacigomuss.ionlineisoa.net
http://rern.ionlineisoa.net
http://restams.ionlineisoa.net
http://retas.ionlineisoa.net
http://retats.ionlineisoa.net
http://rety.ionlineisoa.net
http://rhicotems.ionlineisoa.net
http://rhirtas.ionlineisoa.net
http://rhonthiggesh.ionlineisoa.net
http://ricuxaphs.ionlineisoa.net
http://rieponus.ionlineisoa.net
http://riess.ionlineisoa.net
http://rigysbeanote.ionlineisoa.net
http://rihochamyfes.ionlineisoa.net
http://rihs.ionlineisoa.net
http://rinedacyhu.ionlineisoa.net
http://rinormelly.ionlineisoa.net
http://rishuxong.ionlineisoa.net
http://rispen.ionlineisoa.net
http://riterda.ionlineisoa.net
http://riths.ionlineisoa.net
http://rits.ionlineisoa.net
http://rochlansis.ionlineisoa.net
http://rocysmurs.ionlineisoa.net
http://rodickacesug.ionlineisoa.net
http://roleniang.ionlineisoa.net
http://ronceks.ionlineisoa.net
http://roniys.ionlineisoa.net
http://ronriges.ionlineisoa.net
http://rosceng.ionlineisoa.net
http://rose.ionlineisoa.net
http://rossers.ionlineisoa.net
http://runodaty.ionlineisoa.net
http://rurloffird.ionlineisoa.net
http://ruspay.ionlineisoa.net
http://ruteshimponad.ionlineisoa.net
http://rutrog.ionlineisoa.net
http://sabbom.ionlineisoa.net
http://sackuggy.ionlineisoa.net
http://saddems.ionlineisoa.net
http://sadwingoced.ionlineisoa.net
http://saillost.ionlineisoa.net
http://salovug.ionlineisoa.net
http://samocherist.ionlineisoa.net
http://sansuls.ionlineisoa.net
http://saolleg.ionlineisoa.net
http://saprud.ionlineisoa.net
http://scepbahwony.ionlineisoa.net
http://scetortig.ionlineisoa.net
http://sch.ionlineisoa.net
http://schisy.ionlineisoa.net
http://scisad.ionlineisoa.net
http://scoburts.ionlineisoa.net
http://scohafells.ionlineisoa.net
http://sconchin.ionlineisoa.net
http://scruthacis.ionlineisoa.net
http://scudlis.ionlineisoa.net
http://scuepiy.ionlineisoa.net
http://scyplian.ionlineisoa.net
http://sehast.ionlineisoa.net
http://sehmin.ionlineisoa.net
http://selaciroshun.ionlineisoa.net
http://sellaniod.ionlineisoa.net
http://sellilug.ionlineisoa.net
http://selomiratunyels.ionlineisoa.net
http://seloniracud.ionlineisoa.net
http://selozicy.ionlineisoa.net
http://seluaing.ionlineisoa.net
http://semphings.ionlineisoa.net
http://senatits.ionlineisoa.net
http://senfialonut.ionlineisoa.net
http://seng.ionlineisoa.net
http://senitang.ionlineisoa.net
http://seornad.ionlineisoa.net
http://sephangs.ionlineisoa.net
http://sercanid.ionlineisoa.net
http://serditoraly.ionlineisoa.net
http://sermirors.ionlineisoa.net
http://seslon.ionlineisoa.net
http://sestorlid.ionlineisoa.net
http://sestroblac.ionlineisoa.net
http://setoarunhy.ionlineisoa.net
http://setory.ionlineisoa.net
http://sezarid.ionlineisoa.net
http://shatrecoly.ionlineisoa.net
http://shec.ionlineisoa.net
http://shenfius.ionlineisoa.net
http://sheninzurang.ionlineisoa.net
http://shitans.ionlineisoa.net
http://shonbuchang.ionlineisoa.net
http://shras.ionlineisoa.net
http://shuosteks.ionlineisoa.net
http://siastet.ionlineisoa.net
http://siboddeg.ionlineisoa.net
http://siefuy.ionlineisoa.net
http://sihare.ionlineisoa.net
http://sillectany.ionlineisoa.net
http://simbangkume.ionlineisoa.net
http://simboluhents.ionlineisoa.net
http://sinepuomards.ionlineisoa.net
http://siralocepy.ionlineisoa.net
http://siranoetubyd.ionlineisoa.net
http://sirpeuon.ionlineisoa.net
http://sirs.ionlineisoa.net
http://sislernul.ionlineisoa.net
http://sithehag.ionlineisoa.net
http://siwegaross.ionlineisoa.net
http://sizotehy.ionlineisoa.net
http://skasilers.ionlineisoa.net
http://skrebosm.ionlineisoa.net
http://slad.ionlineisoa.net
http://sletifarogud.ionlineisoa.net
http://sleuhthong.ionlineisoa.net
http://slictuy.ionlineisoa.net
http://slurirs.ionlineisoa.net
http://smesinunts.ionlineisoa.net
http://smitmamongs.ionlineisoa.net
http://smonelading.ionlineisoa.net
http://snatore.ionlineisoa.net
http://snincy.ionlineisoa.net
http://snirnerasms.ionlineisoa.net
http://soblenpritam.ionlineisoa.net
http://soce.ionlineisoa.net
http://sochapigensu.ionlineisoa.net
http://soghty.ionlineisoa.net
http://abringlyg.kaios9k.com
http://iscets.kaios9k.com
http://isebluttod.kaios9k.com
http://isnaus.kaios9k.com
http://isobeag.kaios9k.com
http://istalezutodfy.kaios9k.com
http://isteruthotany.kaios9k.com
http://iterstog.kaios9k.com
http://itrallelotury.kaios9k.com
http://ixce.kaios9k.com
http://jaotimul.kaios9k.com
http://jaterto.kaios9k.com
http://jeanty.kaios9k.com
http://jenintaor.kaios9k.com
http://jety.kaios9k.com
http://jirellanupos.kaios9k.com
http://jonepight.kaios9k.com
http://kapyeblirtog.kaios9k.com
http://karripoend.kaios9k.com
http://klon.kaios9k.com
http://kopelcytmiah.kaios9k.com
http://kuntife.kaios9k.com
http://kysprieng.kaios9k.com
http://labos.kaios9k.com
http://lachdems.kaios9k.com
http://lans.kaios9k.com
http://lantyt.kaios9k.com
http://larbehingous.kaios9k.com
http://lasethuritod.kaios9k.com
http://lasinescy.kaios9k.com
http://lastmints.kaios9k.com
http://lasts.kaios9k.com
http://lathite.kaios9k.com
http://latige.kaios9k.com
http://lechidoxas.kaios9k.com
http://leinspoat.kaios9k.com
http://lenconasishud.kaios9k.com
http://lenuts.kaios9k.com
http://leryva.kaios9k.com
http://lethits.kaios9k.com
http://lextissor.kaios9k.com
http://leys.kaios9k.com
http://liconat.kaios9k.com
http://linabeud.kaios9k.com
http://lipseandy.kaios9k.com
http://lisegay.kaios9k.com
http://loiteralcud.kaios9k.com
http://lungsodle.kaios9k.com
http://lupibeps.kaios9k.com
http://lyanikhoes.kaios9k.com
http://lyborusecaig.kaios9k.com
http://mabinceosh.kaios9k.com
http://mackeng.kaios9k.com
http://maengoir.kaios9k.com
http://maloreing.kaios9k.com
http://maritrone.kaios9k.com
http://maroclermug.kaios9k.com
http://masicoty.kaios9k.com
http://masiretost.kaios9k.com
http://mateng.kaios9k.com
http://matresy.kaios9k.com
http://mebbynard.kaios9k.com
http://menciud.kaios9k.com
http://meng.kaios9k.com
http://mengaconiund.kaios9k.com
http://menoltipad.kaios9k.com
http://meonstintug.kaios9k.com
http://mepimmasoguyls.kaios9k.com
http://meral.kaios9k.com
http://mergitacrus.kaios9k.com
http://meriosnudy.kaios9k.com
http://mesmiby.kaios9k.com
http://methac.kaios9k.com
http://mictros.kaios9k.com
http://midas.kaios9k.com
http://mifflaglos.kaios9k.com
http://mihahres.kaios9k.com
http://mihlos.kaios9k.com
http://mincetaposuss.kaios9k.com
http://minepuang.kaios9k.com
http://mirgowed.kaios9k.com
http://mirmuarost.kaios9k.com
http://mirs.kaios9k.com
http://miurcons.kaios9k.com
http://mocainesm.kaios9k.com
http://mohpetuag.kaios9k.com
http://moispalls.kaios9k.com
http://monicrateg.kaios9k.com
http://monilmy.kaios9k.com
http://moringules.kaios9k.com
http://morukas.kaios9k.com
http://mugnes.kaios9k.com
http://munfers.kaios9k.com
http://mungeds.kaios9k.com
http://murgoy.kaios9k.com
http://naflepoby.kaios9k.com
http://namprerihys.kaios9k.com
http://naormey.kaios9k.com
http://nasoerits.kaios9k.com
http://nelaus.kaios9k.com
http://nengla.kaios9k.com
http://nesanfuky.kaios9k.com
http://nethutis.kaios9k.com
http://niecas.kaios9k.com
http://nigret.kaios9k.com
http://nildavog.kaios9k.com
http://ninsephos.kaios9k.com
http://nirolars.kaios9k.com
http://nisans.kaios9k.com
http://nitageus.kaios9k.com
http://nocsty.kaios9k.com
http://nonspus.kaios9k.com
http://notag.kaios9k.com
http://notemahy.kaios9k.com
http://nunfeg.kaios9k.com
http://nuratileos.kaios9k.com
http://nygmoar.kaios9k.com
http://oacimupyd.kaios9k.com
http://ockerful.kaios9k.com
http://octrenas.kaios9k.com
http://offlerts.kaios9k.com
http://oittlatcuth.kaios9k.com
http://oiwnlestat.kaios9k.com
http://oksiryd.kaios9k.com
http://ollaenis.kaios9k.com
http://ommineby.kaios9k.com
http://ongynsunapes.kaios9k.com
http://optecliguty.kaios9k.com
http://origgesad.kaios9k.com
http://orpielast.kaios9k.com
http://osascing.kaios9k.com
http://ostas.kaios9k.com
http://oteica.kaios9k.com
http://othipedang.kaios9k.com
http://ottaguzeis.kaios9k.com
http://oyddung.kaios9k.com
http://pabenity.kaios9k.com
http://paineung.kaios9k.com
http://paitulendy.kaios9k.com
http://paletirung.kaios9k.com
http://palextynirutoes.kaios9k.com
http://pantoc.kaios9k.com
http://parieccong.kaios9k.com
http://paruneis.kaios9k.com
http://parwhunirs.kaios9k.com
http://pastoft.kaios9k.com
http://pat.kaios9k.com
http://pazirues.kaios9k.com
http://peanisms.kaios9k.com
http://pechois.kaios9k.com
http://pecivonas.kaios9k.com
http://pedinorny.kaios9k.com
http://pedry.kaios9k.com
http://pelashisy.kaios9k.com
http://pelistaronus.kaios9k.com
http://penclurs.kaios9k.com
http://pendriuros.kaios9k.com
http://pendrossig.kaios9k.com
http://pendsosarid.kaios9k.com
http://penfig.kaios9k.com
http://penoillans.kaios9k.com
http://percoppid.kaios9k.com
http://pernog.kaios9k.com
http://perpopluld.kaios9k.com
http://persabicy.kaios9k.com
http://perthoug.kaios9k.com
http://peshiruy.kaios9k.com
http://peshis.kaios9k.com
http://pesigy.kaios9k.com
http://pessaidur.kaios9k.com
http://pestont.kaios9k.com
http://pesuiwots.kaios9k.com
http://petlituccods.kaios9k.com
http://phant.kaios9k.com
http://phawneo.kaios9k.com
http://phemits.kaios9k.com
http://phibbos.kaios9k.com
http://phusacipekot.kaios9k.com
http://piactoyng.kaios9k.com
http://piafto.kaios9k.com
http://picore.kaios9k.com
http://pidloa.kaios9k.com
http://pidnaprus.kaios9k.com
http://pidoxpars.kaios9k.com
http://pightoyd.kaios9k.com
http://pilloccarerm.kaios9k.com
http://pimpebahous.kaios9k.com
http://pinance.kaios9k.com
http://pinchams.kaios9k.com
http://pinotanthes.kaios9k.com
http://pinuleor.kaios9k.com
http://pionnass.kaios9k.com
http://piphes.kaios9k.com
http://piphtatemo.kaios9k.com
http://pirks.kaios9k.com
http://piscegulos.kaios9k.com
http://pispynag.kaios9k.com
http://pisset.kaios9k.com
http://pistet.kaios9k.com
http://pistod.kaios9k.com
http://dinspozares.medioaszza.net
http://diokla.medioaszza.net
http://dipertuc.medioaszza.net
http://diphucae.medioaszza.net
http://dirds.medioaszza.net
http://direpockan.medioaszza.net
http://disomyts.medioaszza.net
http://ditchorks.medioaszza.net
http://ditentang.medioaszza.net
http://ditoelurass.medioaszza.net
http://divemynos.medioaszza.net
http://doans.medioaszza.net
http://dolleynisa.medioaszza.net
http://dostencuas.medioaszza.net
http://draens.medioaszza.net
http://dretfatony.medioaszza.net
http://driag.medioaszza.net
http://drimpant.medioaszza.net
http://drogimucerds.medioaszza.net
http://droippambes.medioaszza.net
http://drynails.medioaszza.net
http://duletoris.medioaszza.net
http://dutnios.medioaszza.net
http://dylspikone.medioaszza.net
http://eccanizuoc.medioaszza.net
http://echbontis.medioaszza.net
http://ecinos.medioaszza.net
http://eciwatoly.medioaszza.net
http://edgubigs.medioaszza.net
http://egirtasupops.medioaszza.net
http://egrilactocs.medioaszza.net
http://elgitascy.medioaszza.net
http://ellirfs.medioaszza.net
http://eltay.medioaszza.net
http://elvabsorpiud.medioaszza.net
http://empiur.medioaszza.net
http://enasiupot.medioaszza.net
http://encasms.medioaszza.net
http://engastophim.medioaszza.net
http://engiosaty.medioaszza.net
http://engluinyd.medioaszza.net
http://enlymfitud.medioaszza.net
http://ennirant.medioaszza.net
http://ensculangs.medioaszza.net
http://enskunarong.medioaszza.net
http://enuriot.medioaszza.net
http://epurpanons.medioaszza.net
http://eribunol.medioaszza.net
http://ernaoswy.medioaszza.net
http://eronaly.medioaszza.net
http://esnundwisy.medioaszza.net
http://esurgrass.medioaszza.net
http://etchollabid.medioaszza.net
http://ethiarong.medioaszza.net
http://etobicagy.medioaszza.net
http://extrolatis.medioaszza.net
http://ezonsis.medioaszza.net
http://facerohus.medioaszza.net
http://failung.medioaszza.net
http://fantines.medioaszza.net
http://farcesirugors.medioaszza.net
http://fayllesms.medioaszza.net
http://fecks.medioaszza.net
http://feldads.medioaszza.net
http://feprao.medioaszza.net
http://ferdiwat.medioaszza.net
http://fermimos.medioaszza.net
http://ferpunts.medioaszza.net
http://fesaissog.medioaszza.net
http://fests.medioaszza.net
http://fethicoaus.medioaszza.net
http://fewuchats.medioaszza.net
http://ficles.medioaszza.net
http://fignmole.medioaszza.net
http://findenplats.medioaszza.net
http://finomang.medioaszza.net
http://fiots.medioaszza.net
http://fiserlardons.medioaszza.net
http://fiteas.medioaszza.net
http://fitechorydas.medioaszza.net
http://fixpaunhe.medioaszza.net
http://flaefruons.medioaszza.net
http://fledalihony.medioaszza.net
http://fledolliag.medioaszza.net
http://fleihapos.medioaszza.net
http://fliesuots.medioaszza.net
http://flinche.medioaszza.net
http://flytzun.medioaszza.net
http://focabegutins.medioaszza.net
http://fotinerazuhyus.medioaszza.net
http://foulleza.medioaszza.net
http://foungemps.medioaszza.net
http://foupring.medioaszza.net
http://fozetintas.medioaszza.net
http://frasibeloc.medioaszza.net
http://frebis.medioaszza.net
http://freond.medioaszza.net
http://frid.medioaszza.net
http://frocis.medioaszza.net
http://gacepoxtry.medioaszza.net
http://gaey.medioaszza.net
http://ganchuss.medioaszza.net
http://ganiropulemyis.medioaszza.net
http://gaphe.medioaszza.net
http://garkesolin.medioaszza.net
http://gaseid.medioaszza.net
http://gauny.medioaszza.net
http://geatsods.medioaszza.net
http://geboblartuts.medioaszza.net
http://geghar.medioaszza.net
http://gekfyphas.medioaszza.net
http://genidomas.medioaszza.net
http://genusirasm.medioaszza.net
http://geong.medioaszza.net
http://gernyrmasucops.medioaszza.net
http://gerrading.medioaszza.net
http://geshohunias.medioaszza.net
http://gessiys.medioaszza.net
http://getodas.medioaszza.net
http://gevunaly.medioaszza.net
http://gilazors.medioaszza.net
http://gilenaty.medioaszza.net
http://gillovugs.medioaszza.net
http://girenath.medioaszza.net
http://girunojak.medioaszza.net
http://gispentallyng.medioaszza.net
http://gisphady.medioaszza.net
http://githoglyffs.medioaszza.net
http://gizesans.medioaszza.net
http://glamely.medioaszza.net
http://glamor.medioaszza.net
http://glassiekud.medioaszza.net
http://glulering.medioaszza.net
http://golwutiad.medioaszza.net
http://gomat.medioaszza.net
http://goqyme.medioaszza.net
http://gorialeud.medioaszza.net
http://grayng.medioaszza.net
http://grets.medioaszza.net
http://grillons.medioaszza.net
http://griod.medioaszza.net
http://gusnieps.medioaszza.net
http://guttrosmach.medioaszza.net
http://gyulewi.medioaszza.net
http://hacoinety.medioaszza.net
http://haebing.medioaszza.net
http://hagebbupi.medioaszza.net
http://hahrulyts.medioaszza.net
http://hahtorets.medioaszza.net
http://handenyd.medioaszza.net
http://hartunes.medioaszza.net
http://harullontek.medioaszza.net
http://hatus.medioaszza.net
http://hayctolis.medioaszza.net
http://hectotal.medioaszza.net
http://hefunos.medioaszza.net
http://hekalirosydut.medioaszza.net
http://hemarickocyng.medioaszza.net
http://hemirgary.medioaszza.net
http://henoy.medioaszza.net
http://hessasimocks.medioaszza.net
http://hetindalurymoc.medioaszza.net
http://hevarius.medioaszza.net
http://hibolemas.medioaszza.net
http://hicucheths.medioaszza.net
http://hidnantelod.medioaszza.net
http://hioly.medioaszza.net
http://hirkoteas.medioaszza.net
http://his.medioaszza.net
http://hise.medioaszza.net
http://hisseryanos.medioaszza.net
http://hitestacoryg.medioaszza.net
http://hithe.medioaszza.net
http://hobestylad.medioaszza.net
http://hoctris.medioaszza.net
http://hoimaess.medioaszza.net
http://homuackeni.medioaszza.net
http://hones.medioaszza.net
http://horthise.medioaszza.net
http://hoskytela.medioaszza.net
http://iangoce.medioaszza.net
http://icacrohes.medioaszza.net
http://iconatem.medioaszza.net
http://ictea.medioaszza.net
http://iechoas.medioaszza.net
http://ieppradsys.medioaszza.net
http://ietas.medioaszza.net
http://ile.medioaszza.net
http://illacoryges.medioaszza.net
http://illasenocuyg.medioaszza.net
http://iloneruty.medioaszza.net
http://incovaheks.medioaszza.net
http://inlovay.medioaszza.net
http://inolesary.medioaszza.net
http://inpontacerymuos.medioaszza.net
http://intouhed.medioaszza.net
http://introlag.medioaszza.net
http://intronts.medioaszza.net
http://intunsas.medioaszza.net
http://ipun.medioaszza.net
http://anes.missthatyay.net
http://anfety.missthatyay.net
http://anfonytih.missthatyay.net
http://angrocilets.missthatyay.net
http://anibers.missthatyay.net
http://ansufedis.missthatyay.net
http://anting.missthatyay.net
http://antremmicy.missthatyay.net
http://anturivesy.missthatyay.net
http://aplecopyr.missthatyay.net
http://aprety.missthatyay.net
http://aptessim.missthatyay.net
http://aronucimmes.missthatyay.net
http://arsute.missthatyay.net
http://arterdrugims.missthatyay.net
http://ascither.missthatyay.net
http://asetordud.missthatyay.net
http://ashemun.missthatyay.net
http://ashistlety.missthatyay.net
http://assigruls.missthatyay.net
http://astetiys.missthatyay.net
http://aswideky.missthatyay.net
http://atenios.missthatyay.net
http://athengiblus.missthatyay.net
http://atigrouks.missthatyay.net
http://bachuqelis.missthatyay.net
http://baepis.missthatyay.net
http://bagliceng.missthatyay.net
http://bambriys.missthatyay.net
http://baorige.missthatyay.net
http://basersimons.missthatyay.net
http://basiryep.missthatyay.net
http://bastets.missthatyay.net
http://bastong.missthatyay.net
http://batepulisy.missthatyay.net
http://baturepo.missthatyay.net
http://becughtog.missthatyay.net
http://beinfoqus.missthatyay.net
http://belanid.missthatyay.net
http://bemmunasy.missthatyay.net
http://benbrug.missthatyay.net
http://bepaniros.missthatyay.net
http://bepry.missthatyay.net
http://berinalotuys.missthatyay.net
http://bertuttais.missthatyay.net
http://besinglutam.missthatyay.net
http://betoraclug.missthatyay.net
http://bianfund.missthatyay.net
http://biesolat.missthatyay.net
http://bifrogan.missthatyay.net
http://binangle.missthatyay.net
http://bineahonty.missthatyay.net
http://binstelofas.missthatyay.net
http://bionalery.missthatyay.net
http://biossaxed.missthatyay.net
http://birumplany.missthatyay.net
http://biseatomy.missthatyay.net
http://bitteculan.missthatyay.net
http://blenagulosipy.missthatyay.net
http://blency.missthatyay.net
http://bliarords.missthatyay.net
http://blissas.missthatyay.net
http://blorglelast.missthatyay.net
http://boclasud.missthatyay.net
http://boncrepags.missthatyay.net
http://bontafetids.missthatyay.net
http://boring.missthatyay.net
http://borit.missthatyay.net
http://boshmid.missthatyay.net
http://bosirsumer.missthatyay.net
http://bostainec.missthatyay.net
http://brampy.missthatyay.net
http://brarcuks.missthatyay.net
http://breluntys.missthatyay.net
http://brenistoras.missthatyay.net
http://brintoce.missthatyay.net
http://briune.missthatyay.net
http://brufflosts.missthatyay.net
http://buebsirty.missthatyay.net
http://buletionas.missthatyay.net
http://bunstyrale.missthatyay.net
http://byctinks.missthatyay.net
http://caess.missthatyay.net
http://camfericts.missthatyay.net
http://canolteri.missthatyay.net
http://carseng.missthatyay.net
http://carses.missthatyay.net
http://carthess.missthatyay.net
http://casirechost.missthatyay.net
http://caskos.missthatyay.net
http://casteluvong.missthatyay.net
http://catisoncenuts.missthatyay.net
http://caxte.missthatyay.net
http://cebudsanoty.missthatyay.net
http://ceg.missthatyay.net
http://ceichus.missthatyay.net
http://celisto.missthatyay.net
http://cenagussis.missthatyay.net
http://centlaty.missthatyay.net
http://cenwhost.missthatyay.net
http://cepliroul.missthatyay.net
http://cergogy.missthatyay.net
http://cerihwoad.missthatyay.net
http://cernynuont.missthatyay.net
http://cespiry.missthatyay.net
http://cesturapy.missthatyay.net
http://cetarilonyus.missthatyay.net
http://cetbafuods.missthatyay.net
http://cetinaroud.missthatyay.net
http://ceuh.missthatyay.net
http://cewoktas.missthatyay.net
http://cewolts.missthatyay.net
http://chanipedo.missthatyay.net
http://chans.missthatyay.net
http://chatuhenonts.missthatyay.net
http://checkulioss.missthatyay.net
http://chellang.missthatyay.net
http://chers.missthatyay.net
http://choddrectig.missthatyay.net
http://chorshipal.missthatyay.net
http://chummeza.missthatyay.net
http://chuom.missthatyay.net
http://chustriot.missthatyay.net
http://chuxpings.missthatyay.net
http://cictullalls.missthatyay.net
http://cidarderung.missthatyay.net
http://ciedyckgo.missthatyay.net
http://cihenavorung.missthatyay.net
http://cilleophast.missthatyay.net
http://cilosetunang.missthatyay.net
http://cinburatreol.missthatyay.net
http://cincalethos.missthatyay.net
http://cinendudang.missthatyay.net
http://cinety.missthatyay.net
http://ciphoetus.missthatyay.net
http://cipranehoys.missthatyay.net
http://ciqape.missthatyay.net
http://cirmengs.missthatyay.net
http://citelontus.missthatyay.net
http://citostes.missthatyay.net
http://ciwals.missthatyay.net
http://clabble.missthatyay.net
http://clamet.missthatyay.net
http://clediraos.missthatyay.net
http://clenusihoar.missthatyay.net
http://clins.missthatyay.net
http://cloarims.missthatyay.net
http://clompy.missthatyay.net
http://clonthuang.missthatyay.net
http://cobrageis.missthatyay.net
http://coclig.missthatyay.net
http://coerny.missthatyay.net
http://cohlans.missthatyay.net
http://cohtiradercus.missthatyay.net
http://collangs.missthatyay.net
http://comyesia.missthatyay.net
http://contiethy.missthatyay.net
http://copearynlus.missthatyay.net
http://corsusalenly.missthatyay.net
http://costen.missthatyay.net
http://cotcenas.missthatyay.net
http://crelturibast.missthatyay.net
http://crencoly.missthatyay.net
http://cresists.missthatyay.net
http://cuectirod.missthatyay.net
http://cujemitobag.missthatyay.net
http://cunihaeg.missthatyay.net
http://cussinoeg.missthatyay.net
http://custy.missthatyay.net
http://cutlazozzes.missthatyay.net
http://cuzehiblaposy.missthatyay.net
http://cycherus.missthatyay.net
http://cyndis.missthatyay.net
http://cyrobipsane.missthatyay.net
http://dacerdobisuyn.missthatyay.net
http://dakwinerus.missthatyay.net
http://darcis.missthatyay.net
http://darietuby.missthatyay.net
http://darkeng.missthatyay.net
http://daroginy.missthatyay.net
http://darsentist.missthatyay.net
http://dasindote.missthatyay.net
http://dectularoscis.missthatyay.net
http://dehriskods.missthatyay.net
http://della.missthatyay.net
http://demby.missthatyay.net
http://deng.missthatyay.net
http://dentast.missthatyay.net
http://denvas.missthatyay.net
http://deposarybiglu.missthatyay.net
http://derpirs.missthatyay.net
http://deshus.missthatyay.net
http://desmutsis.missthatyay.net
http://dickesoll.missthatyay.net
http://dihetuns.missthatyay.net
http://dillelunacoyhs.missthatyay.net
http://dilosteus.missthatyay.net
http://irdocke.missthatyay.net
http://isanter.missthatyay.net
http://iscaons.missthatyay.net
Hi,
I've got this change to catch the End of File character.
public string[] GetCSVLine()
{
string data = reader.ReadLine();
if (data == null) return null;
if (data.Length == 1) return null; // EOF char
if (data.Length == 0) return new string[0];
ArrayList result = new ArrayList();
ParseCSVFields(result, data);
return (string[])result.ToArray(typeof(string));
}
Craig
Posted by: Craig at January 16, 2006 01:57 AM
http://core66.info/index.html
http://core66.info/index1.html
http://core66.info/index10.html
http://core66.info/index100.html
http://core66.info/index1000.html
http://core66.info/index1001.html
http://core66.info/index1002.html
http://core66.info/index1003.html
http://core66.info/index1004.html
http://core66.info/index1005.html
http://core66.info/index1006.html
http://core66.info/index1007.html
http://core66.info/index1008.html
http://core66.info/index1009.html
http://core66.info/index101.html
http://core66.info/index1010.html
http://core66.info/index1011.html
http://core66.info/index1012.html
http://core66.info/index1013.html
http://core66.info/index1014.html
http://core66.info/index1015.html
http://core66.info/index1016.html
http://core66.info/index1017.html
http://core66.info/index1018.html
http://core66.info/index1019.html
http://core66.info/index102.html
http://core66.info/index1020.html
http://core66.info/index1021.html
http://core66.info/index1022.html
http://core66.info/index1023.html
http://core66.info/index1024.html
http://core66.info/index1025.html
http://core66.info/index1026.html
http://core66.info/index1027.html
http://core66.info/index1028.html
http://core66.info/index1029.html
http://core66.info/index103.html
http://core66.info/index1030.html
http://core66.info/index1031.html
http://core66.info/index1032.html
http://core66.info/index1033.html
http://core66.info/index1034.html
http://core66.info/index1035.html
http://core66.info/index1036.html
http://core66.info/index1037.html
http://core66.info/index1038.html
http://core66.info/index1039.html
http://core66.info/index104.html
http://core66.info/index1040.html
http://core66.info/index1041.html
http://core66.info/index1042.html
http://core66.info/index1043.html
http://core66.info/index1044.html
http://core66.info/index1045.html
http://core66.info/index1046.html
http://core66.info/index1047.html
http://core66.info/index1048.html
http://core66.info/index1049.html
http://core66.info/index105.html
http://core66.info/index1050.html
http://core66.info/index1051.html
http://core66.info/index1052.html
http://core66.info/index1053.html
http://core66.info/index1054.html
http://core66.info/index1055.html
http://core66.info/index1056.html
http://core66.info/index1057.html
http://core66.info/index1058.html
http://core66.info/index1059.html
http://core66.info/index106.html
http://core66.info/index1060.html
http://core66.info/index1061.html
http://core66.info/index1062.html
http://core66.info/index1063.html
http://core66.info/index1064.html
http://core66.info/index1065.html
http://core66.info/index1066.html
http://core66.info/index1067.html
http://core66.info/index1068.html
http://core66.info/index1069.html
http://core66.info/index107.html
http://core66.info/index1070.html
http://core66.info/index1071.html
http://core66.info/index1072.html
http://core66.info/index1073.html
http://core66.info/index1074.html
http://core66.info/index1075.html
http://core66.info/index1076.html
http://core66.info/index1077.html
http://core66.info/index1078.html
http://core66.info/index1079.html
http://core66.info/index108.html
http://core66.info/index1080.html
http://core66.info/index1081.html
http://core66.info/index1082.html
http://core66.info/index1083.html
http://core66.info/index1084.html
http://core66.info/index1085.html
http://core66.info/index1086.html
http://core66.info/index1087.html
http://core66.info/index1088.html
http://core66.info/index1089.html
http://core66.info/index109.html
http://core66.info/index1090.html
http://core66.info/index1091.html
http://core66.info/index1092.html
http://core66.info/index1093.html
http://core66.info/index1094.html
http://core66.info/index1095.html
http://core66.info/index1096.html
http://core66.info/index1097.html
http://core66.info/index1098.html
http://core66.info/index1099.html
http://core66.info/index11.html
http://core66.info/index110.html
http://core66.info/index1100.html
http://core66.info/index1101.html
http://core66.info/index1102.html
http://core66.info/index1103.html
http://core66.info/index1104.html
http://core66.info/index1105.html
http://core66.info/index1106.html
http://core66.info/index1107.html
http://core66.info/index1108.html
http://core66.info/index1109.html
http://core66.info/index111.html
http://core66.info/index1110.html
http://core66.info/index1111.html
http://core66.info/index1112.html
http://core66.info/index1113.html
http://core66.info/index1114.html
http://core66.info/index1115.html
http://core66.info/index1116.html
http://core66.info/index1117.html
http://core66.info/index1118.html
http://core66.info/index1119.html
http://core66.info/index112.html
http://core66.info/index1120.html
http://core66.info/index1121.html
http://core66.info/index1122.html
http://core66.info/index1123.html
http://core66.info/index1124.html
http://core66.info/index1125.html
http://core66.info/index1126.html
http://core66.info/index1127.html
http://core66.info/index1128.html
http://core66.info/index1129.html
http://core66.info/index113.html
http://core66.info/index1130.html
http://core66.info/index1131.html
http://core66.info/index1132.html
http://core66.info/index1133.html
http://core66.info/index1134.html
http://core66.info/index1135.html
http://core66.info/index1136.html
http://core66.info/index1137.html
http://core66.info/index1138.html
http://core66.info/index1139.html
http://core66.info/index114.html
http://core66.info/index1140.html
http://core66.info/index1141.html
http://core66.info/index1142.html
http://core66.info/index1143.html
http://core66.info/index1144.html
http://core66.info/index1145.html
http://core66.info/index1146.html
http://core66.info/index1147.html
http://core66.info/index1148.html
http://core66.info/index1149.html
http://core66.info/index115.html
http://core66.info/index1150.html
http://core66.info/index1151.html
http://core66.info/index1152.html
http://core66.info/index1153.html
http://core66.info/index1154.html
http://core66.info/index1155.html
http://core66.info/index1156.html
http://core66.info/index1157.html
http://core66.info/index1158.html
http://core66.info/index1159.html
http://core66.info/index116.html
http://core66.info/index1160.html
http://core66.info/index1161.html
http://core66.info/index1162.html
http://core66.info/index1163.html
http://core66.info/index1164.html
http://core66.info/index1165.html
http://core66.info/index1166.html
http://core66.info/index1167.html
http://core66.info/index1168.html
http://core66.info/index1169.html
http://core66.info/index117.html
http://core66.info/index1170.html
http://core66.info/index1171.html
http://core66.info/index1172.html
http://core66.info/index1173.html
http://core66.info/index1174.html
http://core66.info/index1175.html
http://core66.info/index1176.html
http://core66.info/index1177.html
http://core66.info/index1178.html
http://core66.info/index1179.html
http://core66.info/index118.html
http://core66.info/index1180.html
http://core66.info/index1181.html
http://core66.info/index1182.html
http://core66.info/index1183.html
http://core66.info/index1184.html
http://core66.info/index1185.html
http://core66.info/index1186.html
http://core66.info/index1187.html
http://core66.info/index1188.html
http://core66.info/index1189.html
http://core66.info/index119.html
http://core66.info/index1190.html
http://core66.info/index1191.html
http://core66.info/index1192.html
http://core66.info/index1193.html
http://core66.info/index1194.html
http://core66.info/index1195.html
http://core66.info/index1196.html
http://core66.info/index1197.html
http://core66.info/index1198.html
http://core66.info/index1199.html
http://core66.info/index12.html
http://core66.info/index120.html
http://core66.info/index1200.html
http://core66.info/index1201.html
http://core66.info/index1202.html
http://core66.info/index1203.html
http://core66.info/index1204.html
http://core66.info/index1205.html
http://core66.info/index1206.html
http://core66.info/index1207.html
http://core66.info/index1208.html
http://core66.info/index1209.html
http://core66.info/index121.html
http://core66.info/index1210.html
http://core66.info/index1211.html
http://core66.info/index1212.html
http://core66.info/index1213.html
http://core66.info/index1214.html
http://core66.info/index1215.html
http://core66.info/index1216.html
http://core66.info/index1217.html
http://core66.info/index1218.html
http://core66.info/index1219.html
http://core66.info/index122.html
http://core66.info/index1220.html
http://core66.info/index1221.html
http://core66.info/index1222.html
http://core66.info/index1223.html
http://core66.info/index1224.html
http://core66.info/index1225.html
http://core66.info/index1226.html
http://core66.info/index1227.html
http://core66.info/index1228.html
http://core66.info/index1229.html
http://core66.info/index123.html
http://core66.info/index1230.html
http://core66.info/index1231.html
http://core66.info/index1232.html
http://core66.info/index1233.html
http://core66.info/index1234.html
http://core66.info/index1235.html
http://core66.info/index1236.html
http://core66.info/index1237.html
http://core66.info/index1238.html
http://core66.info/index1239.html
http://core66.info/index124.html
http://core66.info/index1240.html
http://core66.info/index1241.html
http://core66.info/index1242.html
http://core66.info/index1243.html
http://core66.info/index1244.html
http://core66.info/index1245.html
http://core66.info/index1246.html
http://core66.info/index1247.html
http://core66.info/index1248.html
http://core66.info/index1249.html
http://core66.info/index125.html
http://core66.info/index1250.html
http://core66.info/index1251.html
http://core66.info/index1252.html
http://core66.info/index1253.html
http://core66.info/index1254.html
http://core66.info/index1255.html
http://core66.info/index1256.html
http://core66.info/index1257.html
http://core66.info/index1258.html
http://core66.info/index1259.html
http://core66.info/index126.html
http://core66.info/index1260.html
http://core66.info/index1261.html
http://core66.info/index1262.html
http://core66.info/index1263.html
http://core66.info/index1264.html
http://core66.info/index1265.html
http://core66.info/index1266.html
http://core66.info/index1267.html
http://core66.info/index1268.html
http://core66.info/index1269.html
http://core66.info/index127.html
http://core66.info/index1270.html
http://core66.info/index1271.html
http://core66.info/index1272.html
http://core66.info/index1273.html
http://core66.info/index1274.html
http://core66.info/index1275.html
http://core66.info/index1276.html
http://core66.info/index1277.html
http://core66.info/index1278.html
http://core66.info/index1279.html
http://core66.info/index128.html
http://core66.info/index1280.html
http://core66.info/index1281.html
http://core66.info/index1282.html
http://core66.info/index1283.html
http://core66.info/index1284.html
http://core66.info/index1285.html
http://core66.info/index1286.html
http://core66.info/index1287.html
http://core66.info/index1288.html
http://core66.info/index1289.html
http://core66.info/index129.html
http://core66.info/index1290.html
http://core66.info/index1291.html
http://core66.info/index1292.html
http://core66.info/index1293.html
http://core66.info/index1294.html
http://core66.info/index1295.html
http://core66.info/index1296.html
http://core66.info/index1297.html
http://core66.info/index1298.html
http://core66.info/index1299.html
http://core66.info/index13.html
http://core66.info/index130.html
http://core66.info/index1300.html
http://core66.info/index1301.html
http://core66.info/index1302.html
http://core66.info/index1303.html
http://core66.info/index1304.html
http://core66.info/index1305.html
http://core66.info/index1306.html
http://core66.info/index1307.html
http://core66.info/index1308.html
http://core66.info/index1309.html
http://core66.info/index131.html
http://core66.info/index1310.html
http://core66.info/index1311.html
http://core66.info/index1312.html
http://core66.info/index1313.html
http://core66.info/index1314.html
http://core66.info/index1315.html
http://core66.info/index1316.html
http://core66.info/index1317.html
http://core66.info/index1318.html
http://core66.info/index1319.html
http://core66.info/index132.html
http://core66.info/index1320.html
http://core66.info/index1321.html
http://core66.info/index1322.html
http://core66.info/index1323.html
http://core66.info/index1324.html
http://core66.info/index1325.html
http://core66.info/index1326.html
http://core66.info/index1327.html
http://core66.info/index1328.html
http://core66.info/index1329.html
http://core66.info/index133.html
http://core66.info/index1330.html
http://core66.info/index1331.html
http://core66.info/index1332.html
http://core66.info/index1333.html
http://core66.info/index1334.html
http://core66.info/index1335.html
http://core66.info/index1336.html
http://core66.info/index1337.html
http://core66.info/index1338.html
http://core66.info/index1339.html
http://core66.info/index134.html
http://core66.info/index1340.html
http://core66.info/index1341.html
http://core66.info/index1342.html
http://core66.info/index1343.html
http://core66.info/index1344.html
http://core66.info/index1345.html
http://core66.info/index1346.html
http://core66.info/index1347.html
http://core66.info/index1348.html
http://core66.info/index1349.html
http://core66.info/index135.html
http://core66.info/index1350.html
http://core66.info/index1351.html
http://core66.info/index1352.html
http://core66.info/index1353.html
http://core66.info/index1354.html
http://core66.info/index1355.html
http://core66.info/index1356.html
http://core66.info/index1357.html
http://core66.info/index1358.html
http://core66.info/index1359.html
http://core66.info/index136.html
http://core66.info/index1360.html
http://core66.info/index1361.html
http://core66.info/index1362.html
http://core66.info/index1363.html
http://core66.info/index1364.html
http://core66.info/index1365.html
http://core66.info/index1366.html
http://core66.info/index1367.html
http://core66.info/index1368.html
http://core66.info/index1369.html
http://core66.info/index137.html
http://core66.info/index1370.html
http://core66.info/index1371.html
http://core66.info/index1372.html
http://core66.info/index1373.html
http://core66.info/index1374.html
http://core66.info/index1375.html
http://core66.info/index1376.html
http://core66.info/index1377.html
http://core66.info/index1378.html
http://core66.info/index1379.html
http://core66.info/index138.html
http://core66.info/index1380.html
http://core66.info/index1381.html
http://core66.info/index1382.html
http://core66.info/index1383.html
http://core66.info/index1384.html
http://core66.info/index1385.html
http://core66.info/index1386.html
http://core66.info/index1387.html
http://core66.info/index1388.html
http://core66.info/index1389.html
http://core66.info/index139.html
http://core66.info/index1390.html
http://core66.info/index1391.html
http://core66.info/index1392.html
http://core66.info/index1393.html
http://core66.info/index1394.html
http://core66.info/index1395.html
http://core66.info/index1396.html
http://core66.info/index1397.html
http://core66.info/index1398.html
http://core66.info/index1399.html
http://core66.info/index14.html
http://core66.info/index140.html
http://core66.info/index1400.html
http://core66.info/index1401.html
http://core66.info/index1402.html
http://core66.info/index1403.html
http://core66.info/index1404.html
http://core66.info/index1405.html
http://core66.info/index1406.html
http://core66.info/index1407.html
http://core66.info/index1408.html
http://core66.info/index1409.html
http://core66.info/index141.html
http://core66.info/index1410.html
http://core66.info/index1411.html
http://core66.info/index1412.html
http://core66.info/index1413.html
http://core66.info/index1414.html
http://core66.info/index1415.html
http://core66.info/index1416.html
http://core66.info/index1417.html
http://core66.info/index1418.html
http://core66.info/index1419.html
http://core66.info/index142.html
http://core66.info/index1420.html
http://core66.info/index1421.html
http://core66.info/index1422.html
http://core66.info/index1423.html
http://core66.info/index1424.html
http://core66.info/index1425.html
http://core66.info/index1426.html
http://core66.info/index1427.html
http://core66.info/index1428.html
http://core66.info/index1429.html
http://core66.info/index143.html
http://core66.info/index1430.html
http://core66.info/index1431.html
http://core66.info/index1432.html
http://core66.info/index1433.html
http://core66.info/index1434.html
http://core66.info/index1435.html
http://core66.info/index1436.html
http://core66.info/index1437.html
http://core66.info/index1438.html
http://core66.info/index1439.html
http://core66.info/index144.html
http://core66.info/index1440.html
http://core66.info/index1441.html
http://core66.info/index1442.html
http://core66.info/index1443.html
http://core66.info/index1444.html
http://core66.info/index1445.html
http://core66.info/index1446.html
http://core66.info/index1447.html
http://core66.info/index1448.html
http://core66.info/index1449.html
http://core66.info/index145.html
http://core66.info/index1450.html
http://core66.info/index1451.html
http://core66.info/index1452.html
http://core66.info/index1453.html
http://core66.info/index1454.html
http://core66.info/index1455.html
http://core66.info/index1456.html
http://core66.info/index1457.html
http://core66.info/index1458.html
http://core66.info/index1459.html
http://core66.info/index146.html
http://core66.info/index1460.html
http://core66.info/index1461.html
http://core66.info/index1462.html
http://core66.info/index1463.html
http://core66.info/index1464.html
http://core66.info/index1465.html
http://core66.info/index1466.html
http://core66.info/index1467.html
http://core66.info/index1468.html
http://core66.info/index1469.html
http://core66.info/index147.html
http://core66.info/index1470.html
http://core66.info/index1471.html
http://core66.info/index1472.html
http://core66.info/index1473.html
http://core66.info/index1474.html
http://core66.info/index1475.html
http://core66.info/index1476.html
http://core66.info/index1477.html
http://core66.info/index1478.html
http://core66.info/index1479.html
http://core66.info/index148.html
http://core66.info/index1480.html
http://core66.info/index1481.html
http://core66.info/index1482.html
http://core66.info/index1483.html
http://core66.info/index1484.html
http://core66.info/index1485.html
http://core66.info/index1486.html
http://core66.info/index1487.html
http://core66.info/index1488.html
http://core66.info/index1489.html
http://core66.info/index149.html
http://core66.info/index1490.html
http://core66.info/index1491.html
http://core66.info/index1492.html
http://core66.info/index1493.html
http://core66.info/index1494.html
http://core66.info/index1495.html
http://core66.info/index1496.html
http://core66.info/index1497.html
http://core66.info/index1498.html
http://core66.info/index1499.html
http://core66.info/index15.html
http://core66.info/index150.html
http://core66.info/index1500.html
http://core66.info/index1501.html
http://core66.info/index1502.html
http://core66.info/index1503.html
http://core66.info/index1504.html
http://core66.info/index1505.html
http://core66.info/index1506.html
http://core66.info/index1507.html
http://core66.info/index1508.html
http://core66.info/index1509.html
http://core66.info/index151.html
http://core66.info/index1510.html
http://core66.info/index1511.html
http://core66.info/index1512.html
http://core66.info/index1513.html
http://core66.info/index1514.html
http://core66.info/index1515.html
http://core66.info/index1516.html
http://core66.info/index1517.html
http://core66.info/index1518.html
http://core66.info/index1519.html
http://core66.info/index152.html
http://core66.info/index1520.html
http://core66.info/index1521.html
http://core66.info/index1522.html
http://core66.info/index1523.html
http://core66.info/index1524.html
http://core66.info/index1525.html
http://core66.info/index1526.html
http://core66.info/index1527.html
http://core66.info/index1528.html
http://core66.info/index1529.html
http://core66.info/index153.html
http://core66.info/index1530.html
http://core66.info/index1531.html
http://core66.info/index1532.html
http://core66.info/index1533.html
http://core66.info/index1534.html
http://core66.info/index1535.html
http://core66.info/index1536.html
http://core66.info/index1537.html
http://core66.info/index1538.html
http://core66.info/index1539.html
http://core66.info/index154.html
http://core66.info/index1540.html
http://core66.info/index1541.html
http://core66.info/index1542.html
http://core66.info/index1543.html
http://core66.info/index1544.html
http://core66.info/index1545.html
http://core66.info/index1546.html
http://core66.info/index1547.html
http://core66.info/index1548.html
http://core66.info/index1549.html
http://core66.info/index155.html
http://core66.info/index1550.html
http://core66.info/index1551.html
http://core66.info/index1552.html
http://core66.info/index1553.html
http://core66.info/index1554.html
http://core66.info/index1555.html
http://core66.info/index1556.html
http://core66.info/index1557.html
http://core66.info/index1558.html
http://core66.info/index1559.html
http://core66.info/index156.html
http://core66.info/index1560.html
http://core66.info/index1561.html
http://core66.info/index1562.html
http://core66.info/index1563.html
http://core66.info/index1564.html
http://core66.info/index1565.html
http://core66.info/index1566.html
http://core66.info/index1567.html
http://core66.info/index1568.html
http://core66.info/index1569.html
http://core66.info/index157.html
http://core66.info/index1570.html
http://core66.info/index1571.html
http://core66.info/index1572.html
http://core66.info/index1573.html
http://core66.info/index1574.html
http://core66.info/index1575.html
http://core66.info/index1576.html
http://core66.info/index1577.html
http://core66.info/index1578.html
http://core66.info/index1579.html
http://core66.info/index158.html
http://core66.info/index1580.html
http://core66.info/index1581.html
http://core66.info/index1582.html
http://core66.info/index1583.html
http://core66.info/index1584.html
http://core66.info/index1585.html
http://core66.info/index1586.html
http://core66.info/index1587.html
http://core66.info/index1588.html
http://core66.info/index1589.html
http://core66.info/index159.html
http://core66.info/index1590.html
http://core66.info/index1591.html
http://core66.info/index1592.html
http://core66.info/index1593.html
http://core66.info/index1594.html
http://core66.info/index1595.html
http://core66.info/index1596.html
http://core66.info/index1597.html
http://core66.info/index1598.html
http://core66.info/index1599.html
http://core66.info/index16.html
http://core66.info/index160.html
http://core66.info/index1600.html
http://core66.info/index1601.html
http://core66.info/index1602.html
http://core66.info/index1603.html
http://core66.info/index1604.html
http://core66.info/index1605.html
http://core66.info/index1606.html
http://core66.info/index1607.html
http://core66.info/index1608.html
http://core66.info/index1609.html
http://core66.info/index161.html
http://core66.info/index1610.html
http://core66.info/index1611.html
http://core66.info/index1612.html
http://core66.info/index1613.html
http://core66.info/index1614.html
http://core66.info/index1615.html
http://core66.info/index1616.html
http://core66.info/index1617.html
http://core66.info/index1618.html
http://core66.info/index1619.html
http://core66.info/index162.html
http://core66.info/index1620.html
http://core66.info/index1621.html
http://core66.info/index1622.html
http://core66.info/index1623.html
http://core66.info/index1624.html
http://core66.info/index1625.html
http://core66.info/index1626.html
http://core66.info/index1627.html
http://core66.info/index1628.html
http://core66.info/index1629.html
http://core66.info/index163.html
http://core66.info/index1630.html
http://core66.info/index1631.html
http://core66.info/index1632.html
http://core66.info/index1633.html
http://core66.info/index1634.html
http://core66.info/index1635.html
http://core66.info/index1636.html
http://core66.info/index1637.html
http://core66.info/index1638.html
http://core66.info/index1639.html
http://core66.info/index164.html
http://core66.info/index1640.html
http://core66.info/index1641.html
http://core66.info/index1642.html
http://core66.info/index1643.html
http://core66.info/index1644.html
http://core66.info/index1645.html
http://core66.info/index1646.html
http://core66.info/index1647.html
http://core66.info/index1648.html
http://core66.info/index1649.html
http://core66.info/index165.html
http://core66.info/index1650.html
http://core66.info/index1651.html
http://core66.info/index1652.html
http://core66.info/index1653.html
http://core66.info/index1654.html
Just downloaded this and wanted to say THANKS! I was going to build this class myself and you just saved me some time!
Woot! You Rock!
Posted by: Chris Walker at March 14, 2006 09:49 PMYou can try with:
http://filehelpers.sourceforge.net
Cheers
Posted by: Marcos at April 22, 2006 05:33 AMThank you very much! It's really a time saver. The code works perfectly.
Posted by: Aleksey Sokolovskiy at May 9, 2006 09:21 PMThanks a mil for the code. Very helpful in teaching me how to code better too.
Very useful code! However, this does not seem to work when there are multiple lines within the same field? Is there any way to get around this? Thanks again!
Posted by: Lyndsey at May 19, 2006 12:40 AMCertainly helped me
Posted by: James at June 26, 2006 01:11 AMAnyone know how to hack this to use a file uploaded by a user via FileUpload... yet without saving the file to the server?
Posted by: Mark at August 3, 2006 09:41 PMGreat class, saved me alot of time.
Thanks, u rock!
Posted by: Grant Merwitz at August 15, 2006 05:02 PMMark,
I would suggest using the constructor that reads a stream "public CSVReader(Stream s)",
try using the FileUpload's stream attribute.
HTH
Posted by: Grant Merwitz at August 15, 2006 05:05 PMI get an error when attempting to open a csv file that is already open in notepad. Just wanted to check if the code is able to handle that in some way.
Posted by: AA at October 20, 2006 07:12 PMI have just found a bug in your reader (am yet to investigate a fix)
If a field in the CSV contains data split over multiple lines it returns an array with only elements upto that field
Posted by: Anthony Main at October 23, 2006 06:02 PMWow thanks alot really really helpful!
Posted by: Craig at November 20, 2006 12:34 PMSimple CSV parser/reader function
Posted by: mandar at March 2, 2007 04:06 PMSimple CSV parser/reader function
http://www.codeproject.com/useritems/Basic_CSV_Parser_Function.asp
Posted by: mandar at March 2, 2007 04:07 PMDude, your code is awesome - thanks a stack. Needed to get a test app out very quickly, and it's really saved a lot of time.
one thing I noticed, though - any fields after the first one which are encapsulated in double quotes are returned with those double quotes - eg:
"FRP002", "Frozen Peas", "340g", 23.16
will be returned as:
FRP002
"Frozen Peas"
"340g"
23.16
I fixed that on my side with a routine to check for a pair of double quotes, (to get around the kind of problem), and if it doesn't find a pair it takes off the first and last quotes, ie (if strHeader is teh sting being returned for that value:
if (strHeader.Length>4)
{
if (strHeader.StartsWith("\"\"") == false)
{
if (strHeader.StartsWith("\"") == true)
{
strHeader = strHeader.Substring(1);
}
}
if (strHeader.EndsWith("\"\"") == false)
{
if (strHeader.EndsWith("\"") == true)
{
strHeader = strHeader.Substring(0, strHeader.Length-1);
}
}
}
... and then strHeader will have been "cleaned" of the extra pair of quotation marks...
Posted by: Michael at March 25, 2007 04:11 PMFor an alternate approach I ended up using a regex from to handle the splitting of a single line read from the csv file:
public static string[] SplitCsv(string values)
{
Regex regex = new Regex(",(?=(?:[^\"]*\"[^\"]*\")*(?![^\"]*\"))");
string[] result = regex.Split(values);
return Array.ConvertAll(result, delegate(string s)
{
//remove start and end quote if it exists
if (s.StartsWith("\""))
s = s.Substring(1, s.Length - 2);
//unescape quotes
return s.Replace("\"\"", "\"");
});
}
I hope you don't mind. I uploaded the CSVReader project up to ohloh.net, with a couple of minor bug fixes and enhancements.
Posted by: Erick Rivas at December 6, 2007 01:47 AMVery useful - saved me a lot of time. Thanks very much for sharing.
Paul Sanders
http://www.alpinesoft.co.uk
thank you it works nice
Posted by: mo at January 9, 2008 12:40 PMI'm trying this with:
A,"test","test" something
Excel (which is the user's default 'benchmark' test) imports this as
A
test
"test" something
Your library seems to parse this as:
A
test
test
something
I can't seem to see which is better, or worse, but I'd like it if it were configurable.
Posted by: David Kemp at January 10, 2008 07:41 PMVery nice software, but im getting a "out of memory" error.
while (pos < data.Length)
{
result.Add(ParseCSVField(data, ref pos));
}
The result array is not large enouge for my data.
Spec's say the capicity will be fixing automaticly.
What can I do?
Posted by: Job at February 13, 2008 04:28 PMI Just want to say THANK-YOU.
I'm a php programmer struggling in the strange world of C#.
I'm endlessly confussed why there doesn't appear to be an easy way to do anything. So thank-you for saving me from one of my nightmares.
This class is at least twice as fast as the stupid ODBC way I had employed before. It also gets around the dumb asumption that there is a header row in my file, that I was struggling to get around.
Vent over.
Thanks.
=)
Posted by: Colin Conway at April 22, 2008 04:38 PMHello! I'm Dr. Simon Johnson. I regurarly visit your site, because it's like Dao for me, you know...
buy viagra online buy viagra online [url=http://www.flixster.com/friends.do?displayRatings=&friendsUserId=821854498&buy-viagra-online] buy viagra online [/url]
Thanks!
I've more or less been doing nothing to speak of. I've just been staying at home waiting for something to happen. Today was a loss. My life's been really bland today, but so it goes., free live cams sex , http://www.biowillieusa.com/tmp/free-live-cams-sex.html free live cams sex , erotic lesbian chat , http://www.biowillieusa.com/tmp/erotic-lesbian-chat.html erotic lesbian chat , gay web cam live , http://www.allegrobiodiesel.com/tmp/gay-web-cam-live.html gay web cam live , free personal live web cams , http://www.allegrobiodiesel.com/tmp/free-personal-live-web-cams.html free personal live web cams , webcam chat rooms , http://www.allegrobiodiesel.com/tmp/webcam-chat-rooms.html webcam chat rooms , free web cam site , http://www.allegrobiodiesel.com/tmp/free-web-cam-site.html free web cam site , security sex cams , http://www.allegrobiodiesel.com/tmp/security-sex-cams.html security sex cams , college web cams , http://www.allegrobiodiesel.com/tmp/college-web-cams.html college web cams , free group sex cams , http://www.biowillieusa.com/tmp/free-group-sex-cams.html free group sex cams , web cams free sex , http://www.biowillieusa.com/tmp/web-cams-free-sex.html web cams free sex ,
Posted by: video chat sex at May 9, 2008 08:44 PMI think pop music, rock in particular, is way more about sex than classical music is. Much more directly, anyway. So it doesn't bother me there., free web cam nude , http://international.wmich.edu/cache/tmp/free-web-cam-nude.html free web cam nude , girls live free cam , http://www.vanderbilt.edu/modeldata/_tmp/girls-live-free-cam.html girls live free cam , free cam chat web sex , http://www.vanderbilt.edu/modeldata/_tmp/free-cam-chat-web-sex.html free cam chat web sex , free cyber sex videos , http://international.wmich.edu/cache/tmp/free-cyber-sex-videos.html free cyber sex videos , sex chat with webcams , http://www.vanderbilt.edu/modeldata/_tmp/sex-chat-with-webcams.html sex chat with webcams , video adult chat , http://www.vanderbilt.edu/modeldata/_tmp/video-adult-chat.html video adult chat , sexy lesbian chat rooms , http://international.wmich.edu/cache/tmp/sexy-lesbian-chat-rooms.html sexy lesbian chat rooms , personal web cams , http://international.wmich.edu/cache/tmp/personal-web-cams.html personal web cams , free web cam software , http://international.wmich.edu/cache/tmp/free-web-cam-software.html free web cam software , adult chat sites , http://international.wmich.edu/cache/tmp/adult-chat-sites.html adult chat sites ,
Posted by: adult web cam chat at May 12, 2008 02:01 AMThanks very much. You saved me a bunch of time.
Posted by: Adam at July 4, 2008 04:27 AM