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

replace ' with space

Former Member
0 Likes
942

Does anybody know how to replace an ' with space.

I need the word 'Jon' to be converted into Jon .

Thanx

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
898

Hi,

Did you mean something like

REPLACE ',' IN W_DATA WITH SPACE.

?

Does anybody know how to replace an ' with space.

I need the word 'Jon' to be converted into Jon .

Thanx

6 REPLIES 6
Read only

Former Member
0 Likes
898

Hello


REPLACE '''' WITH space INTO field. 

Read only

Former Member
0 Likes
899

Hi,

Did you mean something like

REPLACE ',' IN W_DATA WITH SPACE.

?

Read only

Former Member
0 Likes
898

Hi,

We can do like this also.



replace `'` in myvar with ''.

we can use tilde character / key. it is found on keyboard to the left of '1' key.

regards,

amit m.

Read only

former_member778253
Active Participant
0 Likes
898

yes. the one whch Amit had suggested is the right one.

You can try.

Read only

VivekG
Participant
0 Likes
898

Please use the syntax : REPLACE ',' IN W_DATA WITH SPACE.

Vivek Gupta

Read only

Former Member
0 Likes
898

Yes, it is useful to using ` character in string operations. You can use `'` easily as an alternative.