GREP Help!

Viewing 1 reply thread
  • Author
    Posts
    • #81543
      Jill Tilton
      Member

      I need to create a grep that can find the start of a line and any words that happen before a tab with leader and a $. The look is below. We create compensation statements where not everyone has the same benefits, so I need to do a find change to delete the entire lines that have no value after the $.

      Sample: Let’s say a person has a vale next to Regular Pay and HSA, but not 401K. I need to be able to find that variable benefit that a person does not have an delete the whole line.

      Regular Pay……..$100
      401K……………$
      HSA…………….$300

    • #81553
      Peter Kahrel
      Participant

      Look for \$$
      which stands for ‘Dollar symbol at the end of a line’.

      \$ matches the Dollar symbol, the following $ stands for ‘end of the line/paragraph’.

      Peter

Viewing 1 reply thread
  • You must be logged in to reply to this topic.
>