Sep 17, 2003 #1 antonides Programmer Sep 17, 2003 2 AU How do I Split Strings in ASP e.g. I have a string "Anton Ballus" and I want to take only the Ballus part
How do I Split Strings in ASP e.g. I have a string "Anton Ballus" and I want to take only the Ballus part
Sep 17, 2003 #2 Veep Programmer Jan 10, 2002 1,368 US myStr="Anton Ballus" pos=instr(1,myStr," " myStr=mid(myStr,Pos+1) response.write myStr 'Should return Ballus Upvote 0 Downvote
myStr="Anton Ballus" pos=instr(1,myStr," " myStr=mid(myStr,Pos+1) response.write myStr 'Should return Ballus
Sep 17, 2003 #3 ChrisHirst IS-IT--Management Nov 23, 2001 8,049 GB MyStr = "Anton Ballus" MyStrArray = split(MyStr) will give MyStrArray(0) contains "Anton" MyStrArray(1) contains "Ballus" Chris. Indifference will be the downfall of mankind, but who cares? Upvote 0 Downvote
MyStr = "Anton Ballus" MyStrArray = split(MyStr) will give MyStrArray(0) contains "Anton" MyStrArray(1) contains "Ballus" Chris. Indifference will be the downfall of mankind, but who cares?