How to remove bracket content in php regular expression

藏色散人
Release: 2023-03-09 19:00:02
Original
2976 people have browsed it

How to remove the contents of brackets in php regular rules: 1. Use "preg_replace( '/\{(.*?)\}/', '',$str);" to remove the curly braces and the contents inside the curly braces Content; 2. Remove through "preg_replace('/\(.*?\)/', '', $str);", etc.

How to remove bracket content in php regular expression

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

A brief discussion of PHP regular rules for removing brackets and brackets Content

  • PHP removes the content inside curly braces and braces

$str = 'dfsas{kslajfljs}45';
$str = preg_replace( '/\{(.*?)\}/', '',$str);
echo $str;
Copy after login
  • PHP removes the content inside braces and braces

$str = '9(kslajflj)s45';
$str = preg_replace('/\(.*?\)/', '', $str);
echo $str;exit;
Copy after login
  • PHP removes angle brackets and the content inside the angle brackets

$str = &#39;9sfa<kslj>s45&#39;;
$str = preg_replace(&#39;/\<.*?\>/&#39;, &#39;&#39;, $str);
echo $str;exit;
Copy after login
  • PHP removes the brackets and the content inside the brackets

$str = &#39;9sfa[ksl64546+j]s45&#39;;
$str = preg_replace(&#39;/\[.*?\]/&#39;, &#39;&#39;, $str);
echo $str;exit;
Copy after login

Note: Mainly look at the regular expression, and change it flexibly according to the expression

Recommended study:《PHP video tutorial

The above is the detailed content of How to remove bracket content in php regular expression. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!