PHP 8.5.0 Alpha 1 available for testing

Voting

: eight minus four?
(Example: nine)

The Note You're Voting On

robert at NOSPAM dot NOSPAM
22 years ago
actually, instead of trying to think of every character that might be in your file, excluding the delimiter would be much easier.

for example, if your delimiter was a comma use:

%[^,]

instead of:

%[a-zA-Z0-9.| ... ]

Just make sure to use %[^,\n] on your last entry so you don't include the newline.

<< Back to user notes page

To Top