You can use a capture group in the search pattern and add the backreference (`\1` or `\2`) to the replace pattern:
sed 's/PLOG_\([A-Z]\)FET_SLVT \(.*\) nl=20n/PLOG_\1FET_LVT \2 nl=14n/'
You can use a capture group in the search pattern and add the backreference (`\1` or `\2`) to the replace pattern:
sed 's/PLOG_\([A-Z]\)FET_SLVT \(.*\) nl=20n/PLOG_\1FET_LVT \2 nl=14n/'