How to remove the extra double quote?

后端 未结 5 1932
再見小時候
再見小時候 2021-01-26 02:37

In a malformed .csv file, there is a row of data with extra double quotes, e.g. the last line:

Name,Comment
\"Peter\",\"Nice singer\"
\"Paul\",\"Love \"folk\" so         


        
5条回答
  •  梦毁少年i
    2021-01-26 03:27

    $str = '"folk"';
    
    $new = str_replace('"', '', $str);
    
    /* now $new is only folk, without " */
    

提交回复
热议问题