Похожие чаты

Good, but can you modify your solution so that the

following does not happen?

(1000 iterations of both solutions).

Input:

$paragraph = "o'reilly and peter's dogs and cats";
$junk = ["'s",'/',',','.',';','-'];

Output of my solution:

Array
(
[0] => o'reilly
[1] => and
[2] => peter
[4] => dogs
[6] => cats
)
0.02592 secs

Output of your solution:

Array
(
[0] => o
[1] => reilly
[2] => and
[3] => peter
[4] => s
[5] => dogs
[6] => and
[7] => cats
)
10.00271 secs

In serveral cases your solutions is faster and not in the previous one. However the documentation says:

If you don't need the power of regular expressions, you can choose faster (albeit simpler) alternatives like explode() or str_split().

You must also be careful with: https://stackoverflow.com/questions/15137660/php-preg-split-utf8-characters

Finally, how to eliminate duplicate words with preg_split? I do this for my solution...

$duplicated = [];
$words = array_filter(
explode(' ',
str_replace($junk, ' ',$paragraph)),
function ($item) use (&$duplicated) {
if (trim($item) !== ""
&& !isset($duplicated[$item])) {
$duplicated[$item] = true;
return true;
}
return false;
});

Trim is better for clean chars like \n and performance is not greatly affected. But you can also add \n to $junk.

@being_void_xd

2 ответов

10 просмотров

Why do you ping, when you can just pong

Simply you could give those chars instead of \PL to preg_split. Also that 10 seconds is bulls***. Try it here https://3v4l.org/2u5cd Using preg_split, in this case, is much more faster.

Похожие вопросы

Обсуждают сегодня

Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
Мужики и девушки, привет) в Вelphi xe7 в настройках во вкладке "Editor Options" далее " Color" есть список: "Elements", открыв который мы можем настраивать отображение разных...
Kraszx
14
is that okay?
Samurai 🇯🇵
21
Добрый вечер. Есть вопрос, а может и предложение. Был у меня диалог в другой группе о делфи и я задался вопросом: "А нельзя ли в делфи цвет //коментария и {комментария} сде...
Kraszx
24
How about the project bro Likes the community not that active ?
🅿️abby_FX
19
Guys, Donald Trump or Kamala Harris? It does not matter for Bitcoin in the long run!! 2020 Election: After Joe Biden's victory in November 2020, Bitcoin steadily rose from...
Sabah Shabu
1
как быть с принтером? такой подход прокатит?
zamtmn
12
Всем привет! Подскажи, пожалуйста, как передать в TComboBox сразу значение и id записи. На Delphi я делал так: ComboBox1.Items.AddObject('Какое-то значение', Pointer(id запис...
Евгений
13
Мдя, прикол, боевая сборка запускается (именно под отладчиком) после F9 примерно полторы минуты (97 секунд если быть точным). Начал копать - проблема детектится сразу - зависа...
Александр (Rouse_) Багель
38
@brucezli Any info regarding ETA on updates?
Old Man Tom
10
Карта сайта