Home Backend Development PHP Tutorial 提取字符串中数字解决办法

提取字符串中数字解决办法

Jun 13, 2016 pm 01:45 PM
intval match Note quot

提取字符串中数字
现在有
$z="note1"
怎么用正则取出其中的1
让$z="1"
此时$z是str
怎么把它变成数字类型呢

------解决方案--------------------
$z="note1";
preg_match('/([0-9]+)/', $z,$marray);
$z=$marray[1];
$z=intval($z);//多余的,php是弱类型

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 Article

Hot Article

Hot Article Tags

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)

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决

Infinix Note 40s gets listed online with all features and specifications Infinix Note 40s gets listed online with all features and specifications Jun 30, 2024 pm 09:32 PM

Infinix Note 40s gets listed online with all features and specifications

Match matching method in java Match matching method in java Apr 28, 2023 pm 10:31 PM

Match matching method in java

PHP practical skills: master the correct usage of intval function PHP practical skills: master the correct usage of intval function Mar 09, 2024 pm 09:27 PM

PHP practical skills: master the correct usage of intval function

How to use java Match How to use java Match Apr 18, 2023 pm 01:55 PM

How to use java Match

How to use regular expressions to match strings in Java? How to use regular expressions to match strings in Java? Apr 19, 2023 pm 02:37 PM

How to use regular expressions to match strings in Java?

PHP Expertise: Exploring the underlying mechanics of the intval function PHP Expertise: Exploring the underlying mechanics of the intval function Mar 09, 2024 pm 02:15 PM

PHP Expertise: Exploring the underlying mechanics of the intval function

PHP Programming Guide: How to Customize the Intval Function PHP Programming Guide: How to Customize the Intval Function Mar 11, 2024 am 08:54 AM

PHP Programming Guide: How to Customize the Intval Function

See all articles