"Testing.BSMain, Text: Start Page"
I would like to substring the value above and returning me only the value after the ": " in vb.net. How can i do that?
"Testing.BSMain, Text: Start Page"
I would like to substring the value above and returning me only the value after the ": " in vb.net. How can i do that?
Assumes no error checking:
which simply splits the phrase by the colon and returns the second part.
To use SubString, try this:
you can use the split method to return the value after the colon :