Increment ip address

Hi All,

I want to generate list of ip between source and destination.For example
I/P:10.10.1.5-10.10.1.8
OUTPUT :should be a list which can be looped through
10.10.1.5
10.10.1.6
10.10.1.7
10.10.1.8

How can i achieve this?

@ranjani,

First Split the input strings by using ‘.’ as separator and then take last part values.
From there loop it and increment the values and append it to “10.10.1.”.

Hello ranjani,

Test.xaml (9.8 KB)

Try referring to this.
This might help.

Thank you.

Sequence.xaml (10.6 KB)

I have fixed it with attached solution

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.