how can i remove blank spaces from text file.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kamill
    New Member
    • Dec 2006
    • 71

    how can i remove blank spaces from text file.

    how can i remove blank spaces from text file......is there any function to remove a perticular chr from file...
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    See the preg_replace function.

    Comment

    • ronverdonk
      Recognized Expert Specialist
      • Jul 2006
      • 4259

      #3
      If you want to remove blanks etc. in a variable you can use ne of the PHP trum (ltrim, rtrim) functions.

      If you want to remove excessive blanks within text, thus only leaving one blank char between words, you can use the preg_replace as in[php]$string = preg_replace('/\s\s+/', ' ', $string);
      [/php]
      For any other character replacements you'd better follow acoder's advice and study the manual.

      Ronald :cool:

      Comment

      • kamill
        New Member
        • Dec 2006
        • 71

        #4
        thans to both of you.

        Comment

        Working...