Suniagoz
(Chaichana Chompuviset)
1
I cant Split the text
PONum = output of excel ( selected cell )
ex. I Got “55555-11/7777777888/99”
and finally I want result = 55555-
so I assign PONumber = PoNumber.Split(“-”)(0).ToString
and it Show Option Strict On disallows implicit conversions from String to Char
Hi @Suniagoz
Could you please try the following expression once?
PONumber = PoNumber.Split("-"c)(0).ToString()
Hope this helps,
Best Regards.
system
(system)
Closed
3
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.