Skip to content

validacion de form. no espacios en blanco ni caracterres especiales

  1. def __validateVideoName(videoname):
  2.     import string
  3.     rs = False
  4.     if videoname:
  5.         whiteSpace = False if re.search(‘ ‘,videoname) else True
  6.         specialChar = True if re.compile(‘[a-zA-Z0-9._-]+$’).match(videoname) else False
  7.         if whiteSpace and specialChar:
  8.             rs = True
  9.     return rs