Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'csv'

918837 - parseCSV: quotes csv
  1. /* Takes string converts to 2d array and returns known values - html (26/02/08)*/
  2. function parseCSV($csv) {
  3.     // convert string to array by newline
  4.     $csv = explode("\n", $csv);
  5.     // now that we have the array we need to split based on ,
  6.     $csvn = array();
  7.     foreach ($csv as $c) {
  8.         // remove any dud lines
  9.  
891151 - Ozux: clawsmail csv
  1. ./vcard2xml.py list.vcf addressbook.xmlreset
  2. sys:1: DeprecationWarning: Non-ASCII character '\xa9' in file ./vcard2xml.py on line 5, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
  3. proccessing...
  4.  
  5. got exception:  unsubscriptable object
  6. got exception, cleaning up the mess... changed files will be restored...
worth-right