Quick actions

cmd+k|ctrl+k

Navigation

Languages

preg_match1

Snippet info

Language

Php

Visibility

public

Author

c0kureaxxx17

Created

2020-12-15T07:10:44Z

Updated

2020-12-15T07:38:51Z

<?php

$text = "gray,green,white,black";
preg_match("/white/", $text, $result);

print_r($result);
INFO