GoLang MongoDB\BSON\Regex::getPattern

request it (278)
GoLang replacement for PHP's MongoDB\BSON\Regex::getPattern [edit | history]



Do you know a GoLang replacement for PHP's MongoDB\BSON\Regex::getPattern? Write it!

PHP MongoDB\BSON\Regex::getPattern

PHP original manual for MongoDB\BSON\Regex::getPattern [ show | php.net ]

MongoDB\BSON\Regex::getPattern

(mongodb >=1.0.0)

MongoDB\BSON\Regex::getPatternReturns the Regex's pattern

Description

final public string MongoDB\BSON\Regex::getPattern ( void )

Parameters

This function has no parameters.

Return Values

Returns the Regex's pattern.

Errors/Exceptions

Examples

Example #1 MongoDB\BSON\Regex::getPattern() example

<?php

$regex 
= new MongoDB\BSON\Regex('regex''i');
var_dump($regex->getPattern());

?>

The above example will output something similar to:

string(5) "regex"

See Also