hi how this string is splited and how to eliminate special characters
-
iam a having a string like this 'hi this is "john" iam a 'good,' boy:' so how can i get the words like this hi this is john iam a good boy mean even though there are special characters we should get ony srtings
-
iam a having a string like this 'hi this is "john" iam a 'good,' boy:' so how can i get the words like this hi this is john iam a good boy mean even though there are special characters we should get ony srtings
split is the right word. The string class has a split method.
Christian Graus No longer a Microsoft MVP, but still happy to answer your questions.
-
iam a having a string like this 'hi this is "john" iam a 'good,' boy:' so how can i get the words like this hi this is john iam a good boy mean even though there are special characters we should get ony srtings
-
I would be saying first replace all characters different then 0123456789abcdefghijklmnopqrstuvwxyz with "" EXCEPT spaces. Then split on the on you space and voila !
Do Or Don't, there is no "try catch ex as exception end try"
What the.... :wtf:
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
What the.... :wtf:
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008He's talking about getting rid of the embedded double and single quotes in the string!
Never underestimate the power of human stupidity RAH
-
What the.... :wtf:
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008