Home Backend Development PHP Tutorial Split Operator_PHP Tutorial

Split Operator_PHP Tutorial

Jul 14, 2016 am 10:09 AM
split use Tabs string Split operate model blank

Split will split a string according to a given pattern. For strings that use tabs, colons, whitespace or any symbols to separate different fields, it is very convenient to use this operator to decompose and extract fields. As long as you can write the delimiters as patterns (usually very simple regular expressions), you can use Split to break up the data. Its usage is as follows:

my @fields = split /separator/, $string;
The Split operator here scans the specified string using split mode and returns a list of fields (that is, substrings). During this period, as long as the pattern is successfully matched somewhere, that place is the end of the current field and the beginning of the next field. Therefore, anything matching the pattern will not appear in the return field. The following is a typical Split pattern with colon as delimiter:
my @fields = split /:/, "abc:def:g:h";     #Get ("abc", "def", "g", "h")
If two delimiters are connected together, an empty field will be generated:
my @fields = split /:/, "abc:def::g:h"; #Get ("abc", "def", "", "g", "h")
Here’s a rule that may seem odd at first but rarely causes problems: Split will keep empty fields at the beginning but discard empty fields at the end. For example:
my @fields = split /:/, ":::a:b:c:::"; #Get ("", "", "", "a", "b", "c")
It is also a common practice to use Split’s /s+/ mode to separate characters based on whitespace. This mode treats all consecutive spaces as a single space and splits the data accordingly:
my $some_input = “This is a t test.n”;
my @args = split /s+/, $some_input; #Get ("This", "is", "a", "test.")
By default, Split will separate the strings in $_ with whitespace characters:
my @fields = split;                 #Equivalent to split /s+/,$_;
This is almost equivalent to using /s+/ as the pattern, except that it omits the leading empty field. So, even if the line starts with a blank, you won't see an empty field at the beginning of the returned list. If you want to split a space-separated string in this way, you can use a space as the pattern: split '', $other_string Using a space as the pattern is a special use of split.
Generally speaking, the patterns used in Split are as simple as seen before. But if you use more complex patterns, please avoid using capturing parentheses in the pattern, because this will activate the so-called "delimiter preserving mode" (see the Perlfunc documentation for details). If you need to use group matching in the pattern, please use Use non-capturing parentheses (?:) in Split to avoid accidents
.
Further deepen the convenience brought by Split decomposition and extraction of fields. Here is a piece of code that I did not use the Split operator to decompose and extract fields in my actual work (the code using the Split operator will be given later) to compare and feel its power:
Task: Extract user name and user home directory information from passwd file;
Let’s first take a look at the record format in the passwd file (Figure 1-1 Partial excerpt):
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/bin/sh
……
It can be seen that each field is separated by a colon (:). Taking the first record from left to right as an example, we need to extract the root (user name) before the first colon and the root before the sixth colon. /root (user home directory).
[php]
#Code 1.1 The Split operator is not used to extract field codes;
#!/usr/bin/perl -w
use strict;
open (FH, '/etc/passwd') or die "Can't open file: $!";
while (){
my ($Pos,$endPos,$length,$Name,$Dir);
#############
# Get user name
#############
$length = index ($_, ":");
$Name = substr ($_, 0, $length);
#####################
# Get the user HOME directory location
#####################
$endPos = rindex ($_, ":");
# $endPos-1 skip the current position (colon)
$Pos = rindex ($_, ":", $endPos - 1); $Pos = rindex ($_, ":", $endPos - 1);
# $Pos+1 skip the current position (colon)
# Search direction from left to right. So +1
$Pos += 1;
$length = $endPos - $Pos;
$Dir = substr ($_, $Pos, $length);
print "$Namet$Dirn";
}
close (FH);
The output after running the program is as follows (Figure 1-2):
root /root
bin /bin
……
Now let’s analyze the algorithm of this code. Extracting the username is very simple. You only need to find the first colon position. The substring returned by the substr($_,0,$length) function is the required username. . The more complicated part of the algorithm is to extract the user's home directory. From Figure 1-1, we can see that the passwd file itself has a fixed format. The /root after the penultimate colon is recorded from back to front (from right to left). Directory information.
Algorithm idea for extracting user home directory:
1. Skip the last field of the record;
2. Find the starting position of the penultimate field;
3. Subtract the starting position (/ sign) of the penultimate field character from the starting (colon) position of the penultimate field, and the result is the character length in the user home directory field;
4. substr($_,$Pos,$length); returns user home directory information;
5. Completed.
Split Operator_PHP Tutorial
(Figure 1-3 User directory extraction algorithm)
In summary, we can complete our task by locating and extracting field information through Perl string processing functions. It is foreseeable that when we want to extract multiple unconnected fields, the steps will be more cumbersome, the code will be longer, and it will be more error-prone. If, Record the location of each field and you will have to redesign your algorithm.
Now, let’s look at an example of using the Split operator to decompose the extracted fields:
[php]
#Code 1.2 Use the Split operator to extract field codes;
#!/usr/bin/perl -w
use strict;
open (FH, '/etc/passwd') or die "Can't open file: $!";
while (){
###########
# Get user information
###########
my($Name,$Dir) = (split /:/,$_)[0,5];
                                                       
print "$Namet$Dirn";
}
close (FH);
.

http://www.bkjia.com/PHPjc/477706.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477706.htmlTechArticleSplit It will split the string according to the given pattern, for using tab, colon, whitespace or For strings that separate different fields with any symbols, use this operator to decompose and extract the fields...
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What software is crystaldiskmark? -How to use crystaldiskmark? What software is crystaldiskmark? -How to use crystaldiskmark? Mar 18, 2024 pm 02:58 PM

CrystalDiskMark is a small HDD benchmark tool for hard drives that quickly measures sequential and random read/write speeds. Next, let the editor introduce CrystalDiskMark to you and how to use crystaldiskmark~ 1. Introduction to CrystalDiskMark CrystalDiskMark is a widely used disk performance testing tool used to evaluate the read and write speed and performance of mechanical hard drives and solid-state drives (SSD). Random I/O performance. It is a free Windows application and provides a user-friendly interface and various test modes to evaluate different aspects of hard drive performance and is widely used in hardware reviews

How to download foobar2000? -How to use foobar2000 How to download foobar2000? -How to use foobar2000 Mar 18, 2024 am 10:58 AM

foobar2000 is a software that can listen to music resources at any time. It brings you all kinds of music with lossless sound quality. The enhanced version of the music player allows you to get a more comprehensive and comfortable music experience. Its design concept is to play the advanced audio on the computer The device is transplanted to mobile phones to provide a more convenient and efficient music playback experience. The interface design is simple, clear and easy to use. It adopts a minimalist design style without too many decorations and cumbersome operations to get started quickly. It also supports a variety of skins and Theme, personalize settings according to your own preferences, and create an exclusive music player that supports the playback of multiple audio formats. It also supports the audio gain function to adjust the volume according to your own hearing conditions to avoid hearing damage caused by excessive volume. Next, let me help you

How to use Baidu Netdisk app How to use Baidu Netdisk app Mar 27, 2024 pm 06:46 PM

Cloud storage has become an indispensable part of our daily life and work nowadays. As one of the leading cloud storage services in China, Baidu Netdisk has won the favor of a large number of users with its powerful storage functions, efficient transmission speed and convenient operation experience. And whether you want to back up important files, share information, watch videos online, or listen to music, Baidu Cloud Disk can meet your needs. However, many users may not understand the specific use method of Baidu Netdisk app, so this tutorial will introduce in detail how to use Baidu Netdisk app. Users who are still confused can follow this article to learn more. ! How to use Baidu Cloud Network Disk: 1. Installation First, when downloading and installing Baidu Cloud software, please select the custom installation option.

How to deal with blanks when playing PPT slides How to deal with blanks when playing PPT slides Mar 26, 2024 pm 07:51 PM

1. Open the PPT file you created and select the second slide. 2. On the second slide, select one of the pictures, and then select [Animation] to add any animation effect. 3. In the start column of the animation bar, change [While Standalone] to [After Previous Animation], and you will see that the picture animation label [1] will change to [0]. Do the same for subsequent slides, and you can see the effect by playing the slide at the end.

How to use NetEase Mailbox Master How to use NetEase Mailbox Master Mar 27, 2024 pm 05:32 PM

NetEase Mailbox, as an email address widely used by Chinese netizens, has always won the trust of users with its stable and efficient services. NetEase Mailbox Master is an email software specially created for mobile phone users. It greatly simplifies the process of sending and receiving emails and makes our email processing more convenient. So how to use NetEase Mailbox Master, and what specific functions it has. Below, the editor of this site will give you a detailed introduction, hoping to help you! First, you can search and download the NetEase Mailbox Master app in the mobile app store. Search for "NetEase Mailbox Master" in App Store or Baidu Mobile Assistant, and then follow the prompts to install it. After the download and installation is completed, we open the NetEase email account and log in. The login interface is as shown below

Do Not Disturb Mode Not Working in iPhone: Fix Do Not Disturb Mode Not Working in iPhone: Fix Apr 24, 2024 pm 04:50 PM

Even answering calls in Do Not Disturb mode can be a very annoying experience. As the name suggests, Do Not Disturb mode turns off all incoming call notifications and alerts from emails, messages, etc. You can follow these solution sets to fix it. Fix 1 – Enable Focus Mode Enable focus mode on your phone. Step 1 – Swipe down from the top to access Control Center. Step 2 – Next, enable “Focus Mode” on your phone. Focus Mode enables Do Not Disturb mode on your phone. It won't cause any incoming call alerts to appear on your phone. Fix 2 – Change Focus Mode Settings If there are some issues in the focus mode settings, you should fix them. Step 1 – Open your iPhone settings window. Step 2 – Next, turn on the Focus mode settings

BTCC tutorial: How to bind and use MetaMask wallet on BTCC exchange? BTCC tutorial: How to bind and use MetaMask wallet on BTCC exchange? Apr 26, 2024 am 09:40 AM

MetaMask (also called Little Fox Wallet in Chinese) is a free and well-received encryption wallet software. Currently, BTCC supports binding to the MetaMask wallet. After binding, you can use the MetaMask wallet to quickly log in, store value, buy coins, etc., and you can also get 20 USDT trial bonus for the first time binding. In the BTCCMetaMask wallet tutorial, we will introduce in detail how to register and use MetaMask, and how to bind and use the Little Fox wallet in BTCC. What is MetaMask wallet? With over 30 million users, MetaMask Little Fox Wallet is one of the most popular cryptocurrency wallets today. It is free to use and can be installed on the network as an extension

How to use Xiaomi Auto app How to use Xiaomi Auto app Apr 01, 2024 pm 09:19 PM

Xiaomi car software provides remote car control functions, allowing users to remotely control the vehicle through mobile phones or computers, such as opening and closing the vehicle's doors and windows, starting the engine, controlling the vehicle's air conditioner and audio, etc. The following is the use and content of this software, let's learn about it together . Comprehensive list of Xiaomi Auto app functions and usage methods 1. The Xiaomi Auto app was launched on the Apple AppStore on March 25, and can now be downloaded from the app store on Android phones; Car purchase: Learn about the core highlights and technical parameters of Xiaomi Auto, and make an appointment for a test drive. Configure and order your Xiaomi car, and support online processing of car pickup to-do items. 3. Community: Understand Xiaomi Auto brand information, exchange car experience, and share wonderful car life; 4. Car control: The mobile phone is the remote control, remote control, real-time security, easy

See all articles