string.Format() in PHP[diff: 1..2]

r1 () → r2 ()

don't use my own name in examples


xml
  • 6 insertions
  • 6 deletions
  • +14 bytes
18 lines hidden
  <a href="https://docs.microsoft.com/en-us/dotnet/api/system.string.format?view=net-6.0">equivalent</a> 
  has ordered parameters.
</p>
<glacius:code lang="csharp"><![CDATA[var s = string.Format("My name is {1}, {0}", "Tommy", "Montgomery");
//s = "My name is Montgomery, Tommy"
<glacius:code lang="csharp"><![CDATA[var s = string.Format("My name is {1}, {0}", "John", "Doe");
//s = "My name is Doe, John"
var s = string.Format("My name is {{{0}}}", "Tommy");
//s = "My name is {Tommy}"]]></glacius:code>
var s = string.Format("My name is {{{0}}}", "John");
//s = "My name is {John}"]]></glacius:code>
<p>I needed that. Here it is, PHPified:</p>
19 lines hidden
<ul>
  <li>
    The <a href="http://php.net/manual/en/pcre.constants.php"><code>PREG_OFFSET_CAPTURE</code></a> 
    The <a href="https://www.php.net/manual/en/pcre.constants.php#constant.preg-offset-capture"><code>PREG_OFFSET_CAPTURE</code></a> 
    constant tells the regex engine to capture the string index offset of each match.
  </li>
  <li>
13 lines hidden
    The <code>$offset</code> variable tracks the string length delta. Since we're modifying the
    string, the offsets captured in the regex match becomes out of date.
  </li>
</ul>
</ul>