How to split in VB.NET

前端 未结 5 2180
别跟我提以往
别跟我提以往 2020-12-21 19:16

I am using VB.NET code.

I have got the below string.

http://localhost:3282/ISS/Training/SearchTrainerData.aspx

Now I want to split

5条回答
  •  死守一世寂寞
    2020-12-21 19:27

    Use split(). You call it on the string instance, passing in a char array of the delimiters, and it returns to you an array of strings. Grab the last element to get your "SearchTrainerData.aspx."

提交回复
热议问题