Hello Experts,
I have a client who has a customized module which creates a field for batch nos in the Item table.
I use to update is using dataport.
I am finally handing over the system to the client and what to design a simple where the client can click a button and the system is updated
for example: I want to replace all : 09C/_ with 10D/_ in the item table.
What function should I use?
Can someone help me
Thanks
0
Comments
Use this function to search for a substring inside a string.
If You like to use function then use some filter, loop table and replace what you have to replace
Thank you very much.
How do I loop through the data.
I am replace all items in the data
Thanks
Hi
CONVERTSRT use second and third parameter like a mask, non a search text.
If the string is '09C/_0999' you will obtain '10C/_1000'...
The best solution is to use strpos to find the position of the substring, and do a DELSTR and next INSSTR.
bye
Matteo
for example, but.. if You don't know this one I think you should read app. designer guide to know what you are doing
Eto: thanks - i know that.. just made a mistake :whistle:
avoids to replace any already replaced values who contain the needle again. \:D/