How to use not operation in Boolean Function Using XPath in Xml

In this article I will explain not operation of Boolean function.
  • 1814

Introduction

The  not operation in  Boolean  function can be used to return true if the argument/parameter is false otherwise it will return true.

Syntax

boolean not (boolean)

Example

not(NaN)
not(' ')
not('Richa')

Output

true
true
false

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.