Jump to content

need help with Regex


belick

Recommended Posts

[quote author=magic2goodil link=topic=121731.msg501029#msg501029 date=1168398592]
wth is Regex?
[/quote]

regular expressions....


and even though it's in the wrong board I'll answer...

[code=php:0]
<?php
$chars = '23112Adfafdwafas';
preg_match('/([0-9]+)([a-zA-Z]+)/', $chars, $split);

list(, $numbers, $letters) = $split; // this isn't a typo, you dont want to include the first value so you should start with a comma

echo $numbers . ' | ' . $letters; // echos '23112 | Adfafdwafas'
?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/33545-need-help-with-regex/#findComment-157054
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.