How to remove first word after splitting spring with space

dear developers, i have a sentence here “Maintenance-Basic OEM - Qlik Sense Enterprise Professional Users” after splitting the string with space…the first word will be “Maintenance-Basic”… how toi remove the word and keep the rest? pls help. appreciate it

1 Like

@Yusuf_Rahmaniac

Use String.Replace method and replace that word with empty value.

2 Likes

Hi @Yusuf_Rahmaniac

try this code

result = string.Join(" ", str.Split().Skip(1))
4 Likes

Check this workflow, @Yusuf_Rahmaniac
SampleSequence.xaml (6.9 KB)

1 Like

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