maxonfjvipon / elegant-elephant

Elegant object oriented php primitives library
MIT License
10 stars 1 forks source link

ArrPregSplit object needed #26

Open maxonfjvipon opened 1 year ago

maxonfjvipon commented 1 year ago

Needed an object that could split string by regex

maxonfjvipon commented 1 year ago

Example:

(new ArrPregSplit(
  "/\s/",
  "_"
))->asString(); // "Hello world, my friend" => "Hello_world,_my_friend"