Home Backend Development PHP Tutorial 字符串有关问题

字符串有关问题

Jun 13, 2016 pm 01:41 PM
etc quot split

字符串问题
有一个字符串:ETC56-542NA1,如何变成 ETC56-542N A1这样?

------解决方案--------------------
貌似 php字符串函数里面很多歌函数都能实现这效果 chunk_split() 
$a="ETC56-542NA1";
echo chunk_split("$a",10," ");
随便写一个不知能否实现


------解决方案--------------------

PHP code

<?php $s='ETC56-542NA1';
    echo substr(chunk_split($s,strlen($s)-2,' '),0,-1);
?> <div class="clear">
                 
              
              
        
            </div>
Copy after login
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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks 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)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24
How to let all users print specified prompt information when logging in in Linux How to let all users print specified prompt information when logging in in Linux Feb 19, 2024 pm 05:12 PM

In Linux systems, through configuration files and scripts, you can display specified prompt information when all users log in. Next, we will introduce several commonly used implementation methods. Method 1: Modify the /etc/issue file. Open the terminal and use a text editor (such as vi or nano) to edit the /etc/issue file with root permissions. sudovi/etc/issue Add the prompt message you want to display at the end of the file, for example: Welcome to MyLinuxSystem! Please beaware that all activities are monitored. Save and close the file. Now when the user logs in, the system will display /

How to configure software mirror source in Ubuntu? How to configure software mirror source in Ubuntu? Feb 19, 2024 am 11:15 AM

Configuring software mirror sources is an effective way to increase download speeds and obtain software updates in Ubuntu. The following are the configuration steps: Open the terminal: On the Ubuntu desktop, press the Ctrl+Alt+T key combination to open the terminal. Back up the original software source configuration file (optional): If you want to keep the original software source configuration backup, you can execute the following command to back up the /etc/apt/sources.list file: sudocp/etc/apt/sources.list/ etc/apt/sources.list.backup Edit the software source configuration file: Use a text editor (such as nano or vi) to open the software source configuration file: sudonano

How to solve 'undefined: bytes.Split' error in golang? How to solve 'undefined: bytes.Split' error in golang? Jun 25, 2023 pm 02:02 PM

In the Go language, the bytes package is a package for manipulating byte types, and it contains many useful methods, such as the Split() method. However, when using the Split() method, you may encounter an "undefined: bytes.Split" error. This error is usually caused by incompatible Go versions or lack of necessary dependent libraries. This article will introduce some methods to solve this error. Method 1: Upgrade the Go version as follows

Is ETC worth holding for the long term? Is ETC coin worth investing in? Is ETC worth holding for the long term? Is ETC coin worth investing in? Feb 27, 2024 pm 08:58 PM

Is ETC worth holding for the long term? ETC (Ethereum Classic) is a cryptocurrency based on blockchain technology. It was born on July 20, 2016. It is a branch of the Ethereum blockchain. The origin of ETC can be traced back to the controversy over the Ethereum hard fork in the Ethereum community. Is ETC coin worth investing in? Whether ETC coin is worth investing in requires comprehensive consideration of the following factors: Technical advantages: ETC coin is based on Ethereum blockchain technology, has advantages such as smart contracts and programmability, and has broad application prospects in the field of decentralized application development. Community support: ETC currency has an active community, and community members are confident in the long-term development of ETC currency. Market demand: ETC currency has a relatively high popularity in the cryptocurrency market.

etc. What's the reason for the red light flashing? etc. What's the reason for the red light flashing? Mar 17, 2023 am 10:16 AM

The main reason why the etc red light flashes is that the ETC card is not inserted in place. You can re-plug the ETC card. When the ETC is inserted in place, the green light flashes once, and then there is a corresponding prompt, such as prompting that the card Is it a charge card or a savings card.

What is the use of split method in go language What is the use of split method in go language Jan 28, 2023 pm 01:37 PM

In the Go language, the Split() method is used to split a string. You can use delimiters to divide the string into a list of substrings, and the substrings are returned in the form of slices. Split() is a method of the strings package. You need to import the strings package before using it. The syntax is "strings.Split (string to be split, delimiter)".

What currency is ETC? What currency is ETC? Mar 01, 2024 am 11:30 AM

ETC coin, the full name of Ethereum Classic, is a cryptocurrency generated after the hard fork of the original Ethereum blockchain in 2016.

How to use the split method in Java String How to use the split method in Java String May 02, 2023 am 09:37 AM

The split method in String uses the split() method of String to split the String according to the incoming characters or strings and return the split array. 1. General usage When using general characters, such as @ or, as separators: Stringaddress="Shanghai@Shanghai City@Minhang District@Wuzhong Road";String[]splitAddr=address.split("@");System .out.println(splitAddr[0]+splitAddr[1]+splitAddr[2]+splitAddr[3

See all articles