Python Forum
split strip issues 'NonType'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
split strip issues 'NonType'
#1
hello,

I am extremely new to python so bare with me. I am using a product that requires the use of python for custom functionality.

I have an automation tool that is ingesting and reading an email. I need this email to "split" at a specified string. That string is 'Classification:' however, Classification may not always be in the email to be split at, sometimes the string may be 'Sent with BlackBerry Work'. The string I am working with now is:

splitresponse__response_value = filtered_artifacts_item_1_0[0].split('Classification:') if "Classification:" in filtered_artifacts_item_1_0 else (filtered_artifacts_item_1_0, "Sent with BlackBerry Work")[0].strip()
When I run this, I receive this:
, line 37, in splitresponse
AttributeError: 'list' object has no attribute 'strip'

any help would be appreciated, I basically need the email to split at either "Classification:" or "Sent with BlackBerry Work" it will always be one or the other present, never both.

Thank you,
Reply


Messages In This Thread
split strip issues 'NonType' - by casacafe - Oct-07-2019, 04:47 PM
RE: split strip issues 'NonType' - by ichabod801 - Oct-07-2019, 04:56 PM
RE: split strip issues 'NonType' - by casacafe - Oct-07-2019, 05:16 PM
RE: split strip issues 'NonType' - by ichabod801 - Oct-07-2019, 05:44 PM
RE: split strip issues 'NonType' - by casacafe - Oct-07-2019, 08:45 PM
RE: split strip issues 'NonType' - by ichabod801 - Oct-07-2019, 08:47 PM
RE: split strip issues 'NonType' - by casacafe - Oct-07-2019, 08:52 PM
RE: split strip issues 'NonType' - by casacafe - Oct-08-2019, 06:23 PM
RE: split strip issues 'NonType' - by ichabod801 - Oct-08-2019, 06:29 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  extract only text strip byte array Pir8Radio 7 2,791 Nov-29-2022, 10:24 PM
Last Post: Pir8Radio
Smile please help me remove error for string.strip() jamie_01 3 1,151 Oct-14-2022, 07:48 AM
Last Post: Pedroski55
  Can't strip extra characters from Data Canflyguy 7 1,813 Jan-10-2022, 02:16 PM
Last Post: Canflyguy
  strip() pprod 8 3,374 Feb-16-2021, 01:11 PM
Last Post: buran
  Need help with code for my WS2812B (Neopixel) Led Strip Phibbl 1 2,703 Apr-08-2020, 07:18 PM
Last Post: deanhystad
  removing spaces/tabs after used .strip() zarize 0 1,554 Sep-11-2019, 12:46 PM
Last Post: zarize
  strip off just newlines Skaperen 11 5,226 Jun-19-2019, 06:28 PM
Last Post: Skaperen
  strip space from end of a row of text ineuw 4 2,824 Apr-15-2019, 03:14 AM
Last Post: ineuw
  How to remove whitespace from a string when .replace and .strip do not work winnetrie 7 4,373 Jan-05-2019, 08:44 AM
Last Post: DeaD_EyE
  Strip does not work when applied on a string read from a text file. susmis666 1 2,336 Dec-27-2018, 07:07 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

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