I have a file formatted as...
file.txt
[sectionone]
...
...
[sectiontwo]
...
...
[sectionthree]
...
...
The format is very similar to (for those familiar) smb.conf and I was hoping to have an array "section" strings by the end of it. In the end I'm looking to do a preg_split to take each section of text and put in into an array like so...
Array
(
[0] => [sectionone]
...
...
[1] => [sectiontwo]
...
...
[2] => [sectionthree]
...
...
)
I know I could read the file line by line and create a solution that way but I'm stubborn as hell and trying to figure this out as it suits my needs. The split must occur when a '[' (bracket) is at the beginning of any line and anything leading up to the next bracket (newlines, tabs, any characters, etc) is fair game. Most of my attempts have either resulted in nothing or an array count of 1 with EVERYTHING.
$fileString = file_get_contents( '/tmp/file.txt' );
print_r( preg_split( "/^\[.*\]\n$/", $fileString );
...results in the undesired...
Array
(
[0] => [sectionone]
...
...
[sectiontwo]
...
...
[sectionthree]
...
...
}
Any help would be greatly appreciated as my regex skills are beginner at best. Thanks in advance.
You could perhaps use
preg_match_all
instead?This will match
[
till it finds a\n
followed by a[
or at the end of the string. The flagsms
are important here to make^
match the beginning of all lines and for.
to match newlines.Or with splitting...
This will match a
\n
only if followed by a[
.