問題:如何使用string/char *變量作爲GetPrivateProfileInt方法的路徑參數。 我試圖使用GetPrivateProfileInt給出的Windows。下面的代碼運行perfeclty沒有任何問題: int x = GetPrivateProfileInt(L"x",L"y",1,L"This\\is\\the\\path");
但在我的情況下,路徑被傳遞給函數。類似
values.ini看起來像 [default]
A=1
B=2
C=3
foo.txt的看起來像 Now is the %A% for %a% %B% men to come to the %C% of their %c%
我想使用PowerShell在values.ini搜索所有%X%的值,然後用相應的值,不區分大小寫的情況下更換所有匹配的實例在foo.txt的;生成以下: No