Error: Keyword Argument unsupported by function

Certified Associate Developer

I am trying to implement a basic expression rule to determine if a short string is formatted correctly. I have the code below but it returns the error "Keyword Argument unsupported by function contains". I am getting similar errors in other parts of my application so I'd like to figure out what the error means.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    Hi ,

    As it is clearly we can make out from reading the error itself that the keywords that you have used inside the contains function is not supported here we need to directly pass the values without passing the keyword arguments and yes as  has mentioned that it is not easy to tell which function supports keyword argument and which not, this you only get to know while practicing these type of functions.

Reply
  • 0
    Certified Associate Developer

    Hi ,

    As it is clearly we can make out from reading the error itself that the keywords that you have used inside the contains function is not supported here we need to directly pass the values without passing the keyword arguments and yes as  has mentioned that it is not easy to tell which function supports keyword argument and which not, this you only get to know while practicing these type of functions.

Children