Reading file and removing commas

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Reading file and removing commas

    Hi everyone Ive a problem that i need solving essentially i have a file that i want to read from a form using php simple enough and then to add a function to read the file line by line and remove the commas of the text file im relatively new to this and would really really appreciate the help .

    i have got this with pseudo code but putting it into action im not sure.

    PHP Code:
      read file contents into a string find first comma in that string with str_posresult in $comma while ($comma) {   remove comma from $content using substr   find first comma with str_pos   result is string without any commas 

    #2
    I hope you know how to open a file in javascript and read it line by line. The use of the replace() might be the cause of your problem, because it finds and replaces only the first occurrence of the item you want replaced, all other occurrences are untouched. This is the regx method of fixing that.:
    Code:
    <script>
    var str = 'the, rain, in, spain';
    var newt = str.replace(/,/g, '');
    alert(newt);
    </script>
    If you are having trouble reading the file, come on back and ask me how to do everything.

    Sorry, I just saw the posting date. Well lets leave this here maybe it well help somebody.
    Last edited by sunfighter; 21.06.18, 10:44.

    Comment


      #3
      GumSlone Missing Sql here - topic was answered previously

      Comment

      Working...
      X