Pchp.Library.PCRE.preg_replace C# (CSharp) Method

preg_replace() public static method

public static preg_replace ( Context ctx, PhpValue pattern, PhpValue replacement, PhpValue subject, int limit = -1 ) : PhpValue
ctx Pchp.Core.Context
pattern Pchp.Core.PhpValue
replacement Pchp.Core.PhpValue
subject Pchp.Core.PhpValue
limit int
return Pchp.Core.PhpValue
        public static PhpValue preg_replace(Context ctx, PhpValue pattern, PhpValue replacement, PhpValue subject, int limit = -1)
        {
            long count;
            return preg_replace(ctx, pattern, replacement, subject, limit, out count);
        }

Same methods

PCRE::preg_replace ( Context ctx, PhpValue pattern, PhpValue replacement, PhpValue subject, int limit, long &count ) : PhpValue
PCRE::preg_replace ( Context ctx, string pattern, string replacement, PhpCallable callback, PhpValue subject, int limit, long &count ) : PhpValue