Python Forum
SOLVED: TTP match when final column may or may not be present
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SOLVED: TTP match when final column may or may not be present
#1
Question 
I have another TTP problem where I can't figure out a solution...

My data:
10/0.2/0       33  49      49      48         130        0        44       5           
10/0.3/0       33  39      38      38         136        1        38       0           
10/0.0w        33  25      25      25         131        0        24       1           SomeText
As you can see, there is a final column that could be blank, or could contain a description.

I cannot figure out how to extract the 10 columns if the last column in empty.

I've tried setting a default. I've tried matching on both patterns. I've tried using an ORPHRASE for the ninth column to be split later.

This is the template I have at the moment, which only matches the last line of my data:
<group name="Interface_{{ interface }}">
{{ interface }} {{ cable_mac }} {{ total }} {{ active }} {{ registered }} {{ secondary }} {{ offline }} {{ bonding }} {{ non_bonding }} {{ chan_desc }}
</group>
How can I extract the data, even when the last column is empty?
Reply
#2
Thumbs Up 
Well, as I expected, after posting this question I found my answer. I don't know if it's the best solution, but it works...

Using {{ chan_desc | _line_ | strip() }} for the last column gets me what I was looking for.

<group name="interfaces">
{{ interface }} {{ cable_mac }} {{ total }} {{ active }} {{ registered }} {{ secondary }} {{ offline }} {{ bonding }} {{ non_bonding }} {{ chan_desc | _line_ | strip() }}
</group>
Including _line_ allowed the line to match regardless of the content of the 10th column. I added strip() as the description was being returned as a single space instead of an empty string.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  how to expand each unique value in another column and fill zero if no match SriRajesh 0 1,337 Jul-10-2022, 09:21 AM
Last Post: SriRajesh
  What is the best approach to training a final model after cross validation? amjass12 0 2,323 Jul-21-2021, 10:15 AM
Last Post: amjass12
Question [Solved] How to refer to dataframe column name based on a list lorensa74 1 2,962 May-17-2021, 07:02 AM
Last Post: lorensa74
  Final df to csv HierroDuc1 1 3,676 Apr-19-2019, 09:53 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020