I want to replace few characters if we already know the prefix of those character. Ex: If my string is
limit=100&launch_year=2016&
and i want to replace it with
limit=100&launch_year=2017&
But the string is dynamic and we only know launch_year, so is it possible to find 2016 and replace it with 2017 if i only know that there is launch_year in the dynamic string.