Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello,
Can someone please help me with a replacement to change all words in a file that start with F and have random numbers after it including a decimal point, ex. F2345. with “F20.”?
Thanks
@Brian_cnc ,
FIND = F\d+\. REPLACE = F20. SEARCH MODE = Regular Expression
F\d+\.
F20.
----