Advertisement
Guest User

Deleting from a ".txt" file

a guest
Nov 30th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. Saving customers 0, 1 and 2 to file...
  2. Reading customers 0, 1 and 2 from file...
  3.  
  4. ////////////////////
  5. id: 0
  6. name: Smith
  7. email: smith@smith.com
  8. phone: 123456789
  9. details: details about smith
  10. ////////////////////
  11.  
  12.  
  13. ////////////////////
  14. id: 1
  15. name: Jons
  16. email: jones@jones.com
  17. phone: 234567891
  18. details: details about jones
  19. ////////////////////
  20.  
  21.  
  22. ////////////////////
  23. id: 2
  24. name: Williams
  25. email: williams@williams.com
  26. phone: 345678912
  27. details: details about williams
  28. ////////////////////
  29.  
  30. Saving customer 3 to file...
  31. Reading customers 0, 1, 2 and 3 from file...
  32.  
  33. ////////////////////
  34. id: 0
  35. name: Smith
  36. email: smith@smith.com
  37. phone: 123456789
  38. details: details about smith
  39. ////////////////////
  40.  
  41.  
  42. ////////////////////
  43. id: 1
  44. name: Jons
  45. email: jones@jones.com
  46. phone: 234567891
  47. details: details about jones
  48. ////////////////////
  49.  
  50.  
  51. ////////////////////
  52. id: 2
  53. name: Williams
  54. email: williams@williams.com
  55. phone: 345678912
  56. details: details about williams
  57. ////////////////////
  58.  
  59.  
  60. ////////////////////
  61. id: 3
  62. name: Taylor
  63. email: taylor@taylor.com
  64. phone: 456789123
  65. details: details about taylor
  66. ////////////////////
  67.  
  68. Removing customer with id = 1 from file...
  69. Reading customers 0, 2 and 3 from file...
  70.  
  71. ////////////////////
  72. id: 0
  73. name: Smith
  74. email: smith@smith.com
  75. phone: 123456789
  76. details: details about smith
  77. ////////////////////
  78.  
  79.  
  80. ////////////////////
  81. id: 2
  82. name: Williams
  83. email: williams@williams.com
  84. phone: 345678912
  85. details: details about williams
  86. ////////////////////
  87.  
  88.  
  89. ////////////////////
  90. id: 3
  91. name: Taylor
  92. email: taylor@taylor.com
  93. phone: 456789123
  94. details: details about taylor
  95. ////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement