how to remove 's' from text

The replace function will replace text in a string with some other text:

Replace("http","https",[myLink])
 
But how do I update existing record by removing the 's' can you please tell me procedure.
 
Also can I use update query to only remove 's'? if yes can you please give me sentence?
 
Yes, just use the replace function in an update query. The example I gave replaces "https" with "http". The think is if you simply try to get rid of the "s" then you will lose the "s" from other parts of your text also.
 

Users who are viewing this thread

Back
Top Bottom