string.replaceString()
Replaces contents of a string with the value provided at position specified.Â
Parameters
Character or string value to replace
Starting position to replace (optional) - the first character is considered position 1; if omitted, defaults to position 1
Length to replace (optional) - if omitted, the rest of the string is replaced
Example
pjs.define("myString", { type: 'char', length: 11, initValue: 'Windsor, ON' });
myString = myString.replaceString('Toronto');
return myString;
// "Toronto, ON"
pjs.define("myString", { type: 'char', length: 12, initValue: 'Lancaster, PA' });
myString = myString.replaceString('CA', 11);
Â
return myString;
// "Lancaster, CA"
RPG Equivalent
%REPLACE()
Some documentation pages have recently moved to a new section: Profound AppDev. If you are having trouble finding specific pages, try the documentation search capability or reach out to our Support team!