• Skip to primary navigation
  • Skip to content
  • Skip to footer
DB 0003 Sometimes it is the people no one imagines anything of who do the things that no one can imagine

      D

      Software Developer

      • Earth

      [Python] Check Null or N/A or empty String

      less than 1 minute read

      Sample function to check if string is None or empty "" or “N/A” or “-“

      return true if str is not contains conditions.

      def is_not_blank_or_na(str):
      	return bool(str and str.strip()) and not bool(str == 'N/A' or str == '-' or str.startswith(' ') or str == 'None' or str is None)
      

      Categories: check, null, python, string

      Updated: November 25, 2021

      Twitter Facebook LinkedIn
      Previous Next

      Comments

      You May Also Enjoy

      [JS] Promise Basics

      less than 1 minute read

      1. Resolve case

      [Node.js] Koa Server initialization with formatter

      1 minute read

      Step 1. Setup packages required

      [Java] Custom HTTP RequestURL XSS Filter

      less than 1 minute read

      Sample to show how to check requestURL and prevent Croos-Site-Script Attack Using common XSS Filter to convert URL to clean string.

      [JS] Slice Strings

      less than 1 minute read

      Example codes of String.slice()