Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleÖrnek
linenumberstrue
<SetVariable Name="$(NewValue)">
   <Value>NewValue</Value>
</SetVariable>
<SetVariable Name="$(OldValue)">
   <Value>OldValue</Value>
</SetVariable>
<SetVariable Name="$(Result)">
   <StringReplace OldValue="$(OldValue)" NewValue="$(NewValue)">
      <Value>@@OldValue@@</Value>
   </StringReplace>
</SetVariable>

 

DosyaYolu1 uzantısını alıp değişkeni içerisindeki metin içerisindeki ".htm" uzantısını ".pdf" e çevirebiliriz..

Code Block
languagexml
titleÖrnek
linenumberstrue
<StringReplace OldValue=".htm" NewValue=".pdf">
    <Value Culture="" Target="None">$(DosyaYolu1)</Value>
</StringReplace>

...