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?
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?
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.”.
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.