Re: [Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread Varden Morris
Hi Alfonso, Place the following code in a job and execute it: str RepStr = 'Pp-ppp-pp'; int CharPos; char RepChar = '-'; char RepCharWith = '+'; ; CharPos = strscan(RepStr, RepChar,1, strlen(RepStr)); while (CharPos) { RepStr = strPoke(RepStr, RepCharWith, CharPos); CharPos =

RE: [Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread Alfonso Collados Arroyo
2005 16:06 Para: Axapta-Knowledge-Village@yahoogroups.com Asunto: Re: [Axapta-Knowledge-Village] Replace char in string Hi Alfonso, Place the following code in a job and execute it: str RepStr = 'Pp-ppp-pp'; int CharPos; char RepChar = '-'; char RepCharWith

RE: [Axapta-Knowledge-Village] Replace char in string

2005-09-15 Thread kbi kbi
); Anyway thank you very much. De: Axapta-Knowledge-Village@yahoogroups.com [mailto:Axapta-Knowledge-Village@yahoogroups.com] En nombre de Varden MorrisEnviado el: jueves, 15 de septiembre de 2005 16:06Para: Axapta-Knowledge-Village@yahoogroups.comAsunto: Re: [Axapta-Knowledge-Village] Replace