Link to home
Start Free TrialLog in
Avatar of Member_2_1242703
Member_2_1242703

asked on

How???

using
fullName = result.Properties("displayName")(0).Split("["c)

is there a way to split everything after a space and then [

if the string was LastName, FirstName [whatever]
then i would want my value to be
LastName, FirstName

i tried
fullName = result.Properties("displayName")(0).Split(" ", "["c)
but it returns
LastName,
ASKER CERTIFIED SOLUTION
Avatar of Jeff Certain
Jeff Certain
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Member_2_1242703
Member_2_1242703

ASKER

thanks a ton!