Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

query

Former Member
0 Likes
436

hi guys,

I have a value like this abc def..

i want to find the space and repalce with * and then have to remove values after *

for eg:

abc def = abc*

james cam = james*

how can i do this?

regards

senthil

1 ACCEPTED SOLUTION
Read only

0 Likes
420

Hello,

Do onething.

Do split at space into two fields say field1 and a dummy field. Now take the field1 and concatenate * with that field to make your required field

Regards

Farzan

2 REPLIES 2
Read only

0 Likes
421

Hello,

Do onething.

Do split at space into two fields say field1 and a dummy field. Now take the field1 and concatenate * with that field to make your required field

Regards

Farzan

Read only

0 Likes
419

solved..