search
HomeBackend DevelopmentPHP TutorialDetailed explanation of the use of regular expressions (2)_PHP tutorial
Detailed explanation of the use of regular expressions (2)_PHP tutorialJul 13, 2016 pm 05:20 PM
pelearntwouseexistrightusregularexpressionDetailed explanation

After having a more comprehensive understanding of regular expressions, let’s take a look at how to use regular expressions in Perl, PHP, and JavaScript/" target="_blank">JavaScript.

Usually, the format of regular expressions in Perl is as follows:

Operator / regular-expression / string-to-replace / modifiers

The operator item can be m or s, which represent matching operation and substitution operation respectively.

Among them, the regular expression item is the pattern to be matched or replaced, which can be composed of any characters, metacharacters, or locators. The replacement string item is the string that replaces the found pattern matching object when using the s operator. The last parameter is used to control different matching or replacement methods. For example:

 s/geed/good/

Will find the first occurrence of the geed string in the target object and replace it with good. If we want to perform multiple search-replace operations in the global scope of the target object, we can use the parameter "g", that is, s/love/lust/g.

In addition, if we do not need to limit the matching case, we can use the parameter "i". For example,

 m/JewEL/i

The above regular expression will match jewel, Jewel, or JEWEL in the target object.

In Perl, use the special operator "=~" to specify the matching object of the regular expression. For example:

 $flag =~ s/abc/ABC/

The above regular expression will replace the string abc in the variable $flag with ABC.

Next, we will add regular expressions to the Perl program to verify the validity of the user's email address format. The code is as follows:

 #!/usr/bin/perl
 # get input
 print “Whats your email address? ”;
 $email = $#@60;STDIN$#@62;;
 chomp($email);
 # match and display result
 if($email =~ /^([ a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/)
 {
print( "Your email address is correct! ”);
 }
else
 {
 print(“Please try again! ”);
 }

If the user prefers PHP, the ereg() function can be used for pattern matching operations. The usage format of the ereg() function is as follows:
  ereg(pattern, string)

Among them, pattern represents the pattern of the regular expression, and string is the target object for performing the search and replace operation. The same is to verify the email address. The program code written in PHP is as follows:

 $#@60;?php
  if (ereg(“^([a-zA-Z0-9_ +@([a-zA-Z0-9_-])+(.[a-zA- Z0-9_-])+”,$email))
  { echo “Your email address is correct!”;}
else
  { echo “Please try again!”;}
?$ #@62;
Finally, let’s take a look at JavaScript/" target="_blank">JavaScript. JavaScript/" target="_blank">JavaScript 1.2 comes with a powerful RegExp() object. It can be used to perform regular expression matching operations. The test() method can check whether the target object contains a matching pattern and return true or false accordingly.

We can use JavaScript/" target="_blank">JavaScript to write the following script to verify the validity of the email address entered by the user.

 $#@60;html$#@62;

  $#@60;head$#@62;
  $#@60;script language="Javascript1.2"$#@62;
  $#@60;!-- start hiding
  function verifyAddress(obj)
  {
  var email = obj.email.value;
  var pattern = /^([a-zA- Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+/;
 flag = pattern.test(email);
 if(flag)
  {
  alert(“Your email address is correct!”);
  return true; alert(“Please try again!");
   return false;
    }
   }
   // stop hiding --$#@62;
  $#@60;/script$#@62;
  $#@60;/head$#@62;
  $#@60;body$#@62;
  $#@60;form onSubmit="return verifyAddress(this);"$#@ 62;
 $#@60;input name="email" type="text"$#@62;
 $#@60;input type="submit"$#@62;
 $# @60;/form$#@62;
 $#@60;/body$#@62;
$#@60;/html$#@62;




http://www.bkjia.com/PHPjc/532605.html
www.bkjia.com

truehttp: //www.bkjia.com/PHPjc/532605.htmlTechArticleAfter having a more comprehensive understanding of regular expressions, let’s take a look at how to use them in Perl, PHP, and regular expressions in JavaScript/" target="_blank" JavaScript. Typically,...
Statement
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
如何在Go中使用命名管道?如何在Go中使用命名管道?May 11, 2023 pm 04:22 PM

命名管道是一种在操作系统中相对比较低级的进程通信方式,它是一种以文件为中介的进程通信方式。在Go语言中,通过os包提供了对命名管道的支持。在本文中,我们将介绍如何在Go中使用命名管道来实现进程间通信。一、命名管道的概念命名管道是一种特殊的文件,可以被多个进程同时访问。在Linux系统中,命名管道是一种特殊的文件类型,它们存在于文件系统的某个位置上,并且可以在

如何用php正则替换以什么开头的字符串如何用php正则替换以什么开头的字符串Mar 24, 2023 pm 02:57 PM

PHP正则表达式是一种针对文本处理和转换的有力工具。它可以通过解析文本内容,并按照特定的模式进行替换或截取,达到有效管理文本信息的目的。其中,正则表达式的一个常见应用是替换以特定字符开头的字符串,对此,我们进行如下的讲解

如何在Go中使用第三方库?如何在Go中使用第三方库?May 11, 2023 pm 03:30 PM

在Go语言中,使用第三方库是非常方便的。许多优秀的第三方库和框架可以帮助我们快速地开发应用程序,同时也减少了我们自己编写代码的工作量。但是如何正确地使用第三方库,确保其稳定性和可靠性,是我们必须了解的一个问题。本文将从以下几个方面介绍如何使用第三方库,并结合具体例子进行讲解。一、第三方库的获取Go语言中获取第三方库有以下两种方式:1.使用goget命令首先

如何用 Golang 正则匹配多个单词或字符串?如何用 Golang 正则匹配多个单词或字符串?May 31, 2024 am 10:32 AM

Golang正则表达式使用管道符|来匹配多个单词或字符串,将各个选项作为逻辑OR表达式分隔开来。例如:匹配"fox"或"dog":fox|dog匹配"quick"、"brown"或"lazy":(quick|brown|lazy)匹配"Go"、"Python"或"Java":Go|Python|Java匹配单词或4位邮政编码:([a-zA

php 如何用正则去除中文php 如何用正则去除中文Mar 03, 2023 am 10:12 AM

php用正则去除中文的方法:1、创建一个php示例文件;2、定义一个含有中文和英文的字符串;3、通过“preg_replace('/([\x80-\xff]*)/i','',$a);”正则方法去除查询结果中的中文字符即可。

如何在 Windows 11 中按需使用 OneDrive 的文件如何在 Windows 11 中按需使用 OneDrive 的文件Apr 14, 2023 pm 12:34 PM

<p>Windows 系统上的 OneDrive 应用程序允许您将文件存储在高达 5 GB 的云上。OneDrive 应用程序中还有另一个功能,它允许用户选择一个选项,是将文件保留在系统空间上还是在线提供,而不占用您的系统存储空间。此功能称为按需文件。在这篇文章中,我们进一步探索了此功能,并解释了有关如何在 Windows 11 电脑上的 OneDrive 中按需使用文件的各种选项。</p><h2>如何使用 On

如何在Go中使用WebSocket?如何在Go中使用WebSocket?May 11, 2023 pm 04:17 PM

近年来,WebSocket技术已经成为了Web开发中不可或缺的一部分。WebSocket是一种在单个TCP连接上进行全双工通信的协议,它使得客户端和服务器之间的通信更加流畅和高效。如今,很多现代的Web应用程序都使用了WebSocket技术,例如实时聊天、在线游戏以及实时数据可视化等。Go语言作为一个现代的编程语言,自然也提供了很好的支持WebSock

php怎么利用正则匹配去掉html标签php怎么利用正则匹配去掉html标签Mar 21, 2023 pm 05:17 PM

在本文中,我们将学习如何使用PHP正则表达式删除HTML标签,并从HTML字符串中提取纯文本内容。 为了演示如何去掉HTML标记,让我们首先定义一个包含HTML标签的字符串。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use