Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. remove special character from string

remove special character from string

Scheduled Pinned Locked Moved ASP.NET
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    yogesh m
    wrote on last edited by
    #1

    Hi to all I am rading text file ...... line by line by using string line = rd.ReadLine(); but line contain special character like \t\r\n I want to remove all the character from that line .. HOw it possible Yogesh Yogesh

    C M 2 Replies Last reply
    0
    • Y yogesh m

      Hi to all I am rading text file ...... line by line by using string line = rd.ReadLine(); but line contain special character like \t\r\n I want to remove all the character from that line .. HOw it possible Yogesh Yogesh

      C Offline
      C Offline
      Commickey
      wrote on last edited by
      #2

      Pass the string into a loop and read until it meets any of the characters that you want to remove then apply the trim() function at that point. I have this will help? Greetings, Commickey

      1 Reply Last reply
      0
      • Y yogesh m

        Hi to all I am rading text file ...... line by line by using string line = rd.ReadLine(); but line contain special character like \t\r\n I want to remove all the character from that line .. HOw it possible Yogesh Yogesh

        M Offline
        M Offline
        Mircea Grelus
        wrote on last edited by
        #3

        Add line = line.Replace("\t","").Replace("\r","").Replace("\n",""); after your string line = rd.ReadLine(); regards, Mircea Many people spend their life going to sleep when they’re not sleepy and waking up while they still are.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups