473,394 Members | 2,090 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

simple question : regular expressions

i have a string that looks something like this:
-1--3--8--22--550--1028-

how to make it an array like this:
0 =1,
1 =3,
2 =8,
3 =22,
4 =550,
5 =1028

also, i would like to know some good reg exp tutorials, books or whatever that start from basics and that can teach me reg exp
Thank you
Aug 16 '06 #1
5 1047

"friglob" <fr******************************************@vip. hrschreef in
bericht news:eb**********@news1.xnet.hr...
>i have a string that looks something like this:
-1--3--8--22--550--1028-

how to make it an array like this:
0 =1,
1 =3,
2 =8,
3 =22,
4 =550,
5 =1028

also, i would like to know some good reg exp tutorials, books or whatever
that start from basics and that can teach me reg exp
Thank you
<?php

$string = '-1--3--8--22--550--1028-';
$array = explode( '--', trim( $string, '-' ) );
var_dump($array);

?>

Will do the trick.

Sorry, can't help you with the reg ex. But Google should provide lot's of
info.
Aug 16 '06 #2
amygdala wrote:
"friglob" <fr******************************************@vip. hrschreef in
bericht news:eb**********@news1.xnet.hr...
>>i have a string that looks something like this:
-1--3--8--22--550--1028-

how to make it an array like this:
0 =1,
1 =3,
2 =8,
3 =22,
4 =550,
5 =1028

also, i would like to know some good reg exp tutorials, books or whatever
that start from basics and that can teach me reg exp
Thank you


<?php

$string = '-1--3--8--22--550--1028-';
$array = explode( '--', trim( $string, '-' ) );
var_dump($array);

?>

Will do the trick.

Sorry, can't help you with the reg ex. But Google should provide lot's of
info.

Just found out...

preg_split("%-%",$string_to_search,-1,PREG_SPLIT_NO_EMPTY);

Thank you for your time.
Aug 16 '06 #3
friglob wrote:
Just found out...

preg_split("%-%",$string_to_search,-1,PREG_SPLIT_NO_EMPTY);

Thank you for your time.
preg_split("/-+/", $string_to_search) is a somewhat more orthodox
solution.

Aug 16 '06 #4
$string = "-1--3--8--22--550--1028-";

if(ereg
("-([0-9]{1})--([0-9]{1})--([0-9]{1})--([0-9]{2})--([0-9]{3})--([0-9]{4})-",
$string, $regs)){
$array_set = array_splice($regs,1);
print_r($regs);
print_r($array_set); // <- This is the output requested.
}

Chung Leong wrote:
friglob wrote:
Just found out...

preg_split("%-%",$string_to_search,-1,PREG_SPLIT_NO_EMPTY);

Thank you for your time.

preg_split("/-+/", $string_to_search) is a somewhat more orthodox
solution.
Aug 16 '06 #5
Rik
Don't toppost

we******@gmail.com wrote:
Chung Leong wrote:
>friglob wrote:
>>Just found out...

preg_split("%-%",$string_to_search,-1,PREG_SPLIT_NO_EMPTY);

Thank you for your time.

preg_split("/-+/", $string_to_search) is a somewhat more orthodox
solution.
$string = "-1--3--8--22--550--1028-";

if(ereg
("-([0-9]{1})--([0-9]{1})--([0-9]{1})--([0-9]{2})--([0-9]{3})--([0-9]{4})-",
$string, $regs)){
$array_set = array_splice($regs,1);
print_r($regs);
print_r($array_set); // <- This is the output requested.
}
But a lot more undynamic & slower, I'd suggest using Chung's solution. It's
the fastest and the easiest altered.

Grtz,
--
Rik Wasmus
Aug 16 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Steve Zatz | last post by:
Is '@' a special character in regular expressions? I am asking because I don't understand the following: >>> import re >>> s = ' @' >>> re.sub(r'\b@','*',s) ' @' >>> s = ' a' >>>...
18
by: Q. John Chen | last post by:
I have Vidation Controls First One: Simple exluce certain special characters: say no a or b or c in the string: * Second One: I required date be entered in "MM/DD/YYYY" format: //+4 How...
2
by: Sehboo | last post by:
Hi, I have several regular expressions that I need to run against documents. Is it possible to combine several expressions in one expression in Regex object. So that it is faster, or will I...
2
by: cleo | last post by:
I'm experimenting with Regular Expressions and Windows Forms. Frequently I want a value to be either a valid pattern or empty. For example a Zip code must be 5 digits or may be empty. I know that...
4
by: Együd Csaba | last post by:
Hi All, I'd like to "compress" the following two filter expressions into one - assuming that it makes sense regarding query execution performance. .... where (adate LIKE "2004.01.10 __:30" or...
7
by: Billa | last post by:
Hi, I am replaceing a big string using different regular expressions (see some example at the end of the message). The problem is whenever I apply a "replace" it makes a new copy of string and I...
3
by: a | last post by:
I'm a newbie needing to use some Regular Expressions in PHP. Can I safely use the results of my tests using 'The Regex Coach' (http://www.weitz.de/regex-coach/index.html) Are the Regular...
25
by: Mike | last post by:
I have a regular expression (^(.+)(?=\s*).*\1 ) that results in matches. I would like to get what the actual regular expression is. In other words, when I apply ^(.+)(?=\s*).*\1 to " HEART...
1
by: Allan Ebdrup | last post by:
I have a dynamic list of regular expressions, the expressions don't change very often but they can change. And I have a single string that I want to match the regular expressions against and find...
12
by: FAQEditor | last post by:
Anybody have any URL's to tutorials and/or references for Regular Expressions? The four I have so far are: http://docs.sun.com/source/816-6408-10/regexp.htm...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.