Q
添加字符
0
A
回答
1
echo "'" . str_replace(' ', "' '", 'dddd ggggb btbtgbgb gtrbr') . "'";
// returns 'dddd' 'ggggb' 'btbtgbgb' 'gtrbr'
0
$str = "dddd ggggb btbtgbgb gtrbr";
echo "'" . str_replace(' ', "' '", preg_replace('/\s\s+/', ' ', $str)) . "'";
//returns 'dddd' 'ggggb' 'btbtgbgb' 'gtrbr' and strips extra whitespace if ever your text file has extra whitespaces.
0
// load file into an array
$lines = file($textfile);
foreach ($lines as $key => $line) {
// add quotes and remove tailing newline
$lines[$key] = "'".rtrim($line, "\n")."'";
}
print_r($lines);
注意:這可能不會很好地擴展。
相關問題
- 1. 添加字符
- 2. 添加字符2000
- 3. 添加字符串
- 4. 添加字符串逐字字符串
- 5. 添加字符串爲int /添加整數的字符串
- 6. 從字符串添加字符疊
- 7. 向字符串流添加字符
- 8. 將字符添加到字符串
- 9. 將字符添加到字符串
- 10. 在字符串中間添加字符
- 11. 字符添加到字符串
- 12. 在C字符添加到字符串
- 13. 添加字符串某些字符
- 14. Python - 將字符添加到字符串
- 15. 將字符添加到字符串
- 16. 將字符添加到JSON字符串
- 17. 在字符串中間添加字符
- 18. 將字符串添加到字符串
- 19. 將字符添加到字符串vb.net
- 20. +++字符添加到搜索字符串
- 21. 添加字符串,字符串數組
- 22. Java將字符添加到字符串
- 23. 向tkinter添加字符串
- 24. 如何添加字符串
- 25. 添加字符和int
- 26. 是GetByteCount(字符串)添加?
- 27. ArrayList不添加字符串
- 28. 如何添加字符
- 29. 如何添加字符串
- 30. 添加字符PostgreSQL的
更好的答案? –