HI, please i need help with this, a need to remove a part of text, this it`s the text:
MAYO\ALEJANDRO GARATE HENRIQUEZ INTERNACIONAL
i need to take only te full name of the person, obviously the name of the month will change constantly, so I need to omit the month and the symbol "" for each row.
so which string you need from here buddy
MAYO*ALEJANDRO GARATE HENRIQUEZ INTERNACIONAL*
you mean only the highlighted
if so you can get by this
intext = “MAYO\ALEJANDRO GARATE HENRIQUEZ INTERNACIONAL” out_text = split(intext,“\”)(1).ToString
which would give us the term ALEJANDRO GARATE HENRIQUEZ INTERNACIONAL
Kindly correct me if you need any other data
Cheers @Renenobal