Hi all,
Simple issue. I’m trying to replace a string such that it dynamically replaces the individual parts by name and position. All works well, except I need an extra slash in the string results.
Original string: g70_vo_qk.ogg
Find What code: (\w+?)(\w+.\w+)
Replace code: =FMODSoundAdd("sounds\\chars\\1\\1\2",0,0);
Current result: =FMODSoundAdd(“sounds\ars\g70\g70_vo_qk.ogg”,0,0);
Desired result: =FMODSoundAdd("sounds\\chars\\g70\\g70_vo_qk.ogg",0,0);
I can get a result with single slashes, but I need double slashes for my needs.
Any guidance would be appreciated. Thanks in advance!