String originalUrl = "http://www.example.com/details?item_id={ITEM_ID}"; String itemId = "12345"; String newUrl = RuntimeVariables.replace(originalUrl, itemId); // newUrl will be: "http://www.example.com/details?item_id=12345"
String message = "Hello {USER_NAME}, welcome to our website!"; String userName = "John"; String newMessage = RuntimeVariables.replace(message, userName); // newMessage will be: "Hello John, welcome to our website!"This method is part of the Liferay Portal Web library, which is a package of utility classes and methods for developing web applications using the Liferay platform. The package can be found in the com.liferay.portalweb.portal.util package.