Remove TAB From Text

Viewing 2 reply threads
  • Author
    Posts
    • #91310
      Paul Williams
      Participant

      Hi – back again!

      I have another, what is probably a simple task, but I can’t figure it out :(

      I need to remove the first TAB in a list:

      eg: TEXT1 <TAB> TEXT2 <TAB> TEXT3 <TAB> TEXT4

      And I want to get it to read as per the example:

      eg: TEXT1 TEXT2 <TAB> TEXT3 <TAB> TEXT4

      Thank you all again in advance :)

    • #91327
      Ari Singer
      Member

      There are numerous ways to achieve that, but this is what I concocted on the fly:

      Find What: (^.+?)(\t)
      Change To: $1

      Please note that this will delete the tab but not put in a space in its place. If you want to add a space use this in the Change To field:
      $1\s

    • #91410
      Paul Williams
      Participant

      Thanks Ari :)

Viewing 2 reply threads
  • You must be logged in to reply to this topic.
>