Forum Discussion

aprats's avatar
aprats
New Contributor II
3 years ago

Fields reference in a Connector Datasrc

Hi all,  I need to assign a value in a field, dependeing on an other. I can do it in Delimited Files using  "api.Parser.DelimitedParsedValues()" but I don't know wich function can provide me the str...
  • ckattookaran's avatar
    3 years ago

    If you are using multiple fields then I would do it as 

    Dim fieldValues as String() = args.line.split(",")

    Then fieldValues(0) is first column and filed values(3) is 4th column.