Hi, I have a field that have two names in it, separated by two-spaces. how do I get only the second person from this field? examples: ---1st person-------- -----2nd person------ LUKASZ STASIAK ANNA KAROWIEC ^1 space ^2 -----------1st person--------- ------------2nd person--------- ADAM KAPEC KOWALKI JURAND ZE SPYCHOWA ^1 ^1 ^2 ^1 ^1 this: sender = scan(tpp_name, 1, " "); receiver = scan(tpp_name, 2, " "); treats the " " as <space separator><space separator> not <double space separator>. Is there any workaround for that? Thanks Lukasz
... View more