How to get the Third Value in the String

aa_123_456_045_ee.doc
Suggest a expression to get Only 456 Value from the String Which is the Third Value in String Sperated by _ Symbol

Hi @Gopikrishna_S ,

Could check with the below Expression :

Split(YourStringVar,"_")(2)

@Gopikrishna_S

“aa_123_456_045_ee.doc”.Split("_"C)(2)

Hi @Gopikrishna_S

Input= aa_123_456_045_ee.doc
Output= input.Split("_"c)(2)

Hope it helps!!

Superb Bro, Its Working Fine Thank You :grinning:

1 Like

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