I want to make a CSV file importer on my website. I want the user to choose the delimiter.

The problem is when the form submits, the delimiter field is stored as '\t', for example, so when I'm parsing the file, I search for the string '\t' instead of a real TAB. It does the same thing with every special characters like \r, \n, etc...

I want to know the way or the function to use to convert these characters to their true representation without using an array like:

  • 't' => "\t"
  • 'r' => "\r"
  • ...
link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

You should probably decide what special chars will you allow and create a function like this one:

function translate_quoted($string) {
  $search  = array("\\t", "\\n", "\\r");
  $replace = array( "\t",  "\n",  "\r");
  return str_replace($search, $replace, $string);
}
link|improve this answer
feedback
echo str_replace("\\t", "\t", $string);

View an example here: http://ideone.com/IVFZk

link|improve this answer
feedback

This looks like single vs double quotes fun:

$str = strtr($str, '\t\n\r', "\t\n\r");
link|improve this answer
feedback

Doesnt look like SO is leaving the tab in quotes, but tabbing once in any pad then copying into quotes should work.

$data = str_replace("\t", " ", $data);
link|improve this answer
1  
HTML entities are nice for HTML, but won't that cause issues if you copy-paste into a plaintext file? – jnpcl May 13 '11 at 19:29
Ah, yes. Used to working with HTML a bit much i suppose. – Ryan Cooper May 13 '11 at 19:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.