-1

I have for example a path:

Path: "Abc/dbaklbdf/akldfa/das/adsa"

I need to split it on / to access the values.

How can I do that?

M. Schena
  • 2,039
  • 1
  • 21
  • 29
  • Please edit your question to show the Ant code you have so far. Also, what would you like to do with this split string? – Chad Nouis Feb 04 '16 at 15:45

1 Answers1

0

If you want to do this in javascript:

'Abc/dbaklbdf/akldfa/das/adsa'.split('/')

output:

["Abc", "dbaklbdf", "akldfa", "das", "adsa"]
ashfaq.p
  • 5,379
  • 21
  • 35