How to use subsequence operation in Function on sequence Using XPath in Xml

In this article I will explain subsequence operation of function on sequence.
  • 2660

Introduction

The subsequence operation of Function on sequence can be used to return the subsequence from the given sequence from a specified position and the value where to exit that subsequence.

Syntax
 

subsequence ((item,item,item,item), starts, len)

In the above syntax the first argument is the list of items that shows the sequence ,the second argument is the position specified by starts means where the subsequence can starts and the third argument specifies the length of the subsequence means when to exit that subsequence. Now in short the second argument starts the subsequence and continues until the third argument that is length of the subsequence. 

Example

subsequence (("Name","Address","Contact","Email"), 2 ,3)
subsequence (("Name","Address","Contact","Email"), 2 )
subsequence (("Name","Address","Contact","Email"), 2 ,2)

Output

("Address","Contact","Email")
("Address","Contact","Email")
("Address","Contact")

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.