-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathWordsmithService.php
More file actions
1296 lines (1196 loc) · 28.5 KB
/
Copy pathWordsmithService.php
File metadata and controls
1296 lines (1196 loc) · 28.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace TopShelfCraft\Wordsmith\services;
use craft\base\Component;
use DaveChild\TextStatistics\TextStatistics;
use ICanBoogie\Inflector;
use Stringy\Stringy;
use TopShelfCraft\Wordsmith\Word;
use TopShelfCraft\Wordsmith\Wordsmith;
use TopShelfCraft\Wordsmith\libs\APTitleCapitalizer;
use TopShelfCraft\Wordsmith\libs\FullNameParser;
use TopShelfCraft\Wordsmith\libs\Hacksaw;
use TopShelfCraft\Wordsmith\libs\RomanNumerals;
use TopShelfCraft\Wordsmith\libs\SubStringy\SubStringy;
use TopShelfCraft\Wordsmith\libs\Videos;
class WordsmithService extends Component
{
/*
* Private properties
* ===========================================================================
*/
private $_methods = [
// Documented methods
'amp' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'apTitleize' => [
'source' => 'internal', 'category' => 'casing'
],
'automatedReadabilityIndex' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'averageWordsPerSentence' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'between' => [
'source' => 'Stringy', 'category' => 'substrings'
],
'camelize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'caps' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'chop' => [
'source' => 'internal', 'category' => 'truncation', 'is_safe' => ['html']
],
'colemanLiauIndex' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'daleChallReadabilityScore' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'dasherize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'emojify' => [
'source' => 'internal', 'category' => 'emoji'
],
'entitle' => [
'source' => 'internal', 'category' => 'casing'
],
'firstName' => [
'source' => 'FullNameParser', 'category' => 'names'
],
'firstWord' => [
'source' => 'internal', 'category' => 'substrings'
],
'fleschKincaidReadingEase' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'fleschKincaidGradeLevel' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'givenName' => [
'source' => 'FullNameParser', 'category' => 'names'
],
'gunningFogScore' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'hacksaw' => [
'source' => 'internal', 'category' => 'truncation', 'is_safe' => ['html']
],
'humanize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'hyphenate' => [
'source' => 'Stringy', 'category' => 'casing'
],
'isStringy' => [
'source' => 'internal', 'category' => 'utilities'
],
'lastName' => [
'source' => 'FullNameParser', 'category' => 'names'
],
'lastWord' => [
'source' => 'internal', 'category' => 'substrings'
],
'lowerCaseRoman' => [
'source' => 'internal', 'category' => 'roman-numerals'
],
'ordinal' => [
'source' => 'Inflector', 'category' => 'inflection'
],
'ordinalize' => [
'source' => 'Inflector', 'category' => 'inflection'
],
'parseName' => [
'source' => 'FullNameParser', 'category' => 'names'
],
'parseUrl' => [
'source' => 'internal', 'category' => 'urls'
],
'pascalize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'pluralize' => [
'source' => 'Inflector', 'category' => 'inflection'
],
'readTime' => [
'source' => 'internal', 'category' => 'statistics'
],
'sentenceCount' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'singularize' => [
'source' => 'Inflector', 'category' => 'inflection'
],
'slugify' => [
'source' => 'Stringy', 'category' => 'casing'
],
'smartypants' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'smogIndex' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'spacheReadabilityScore' => [
'source' => 'TextStatistics', 'category' => 'statistics'
],
'substringAfterFirst' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'substringAfterLast' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'substringBeforeFirst' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'substringBeforeLast' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'substringBetween' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'substringCount' => [
'source' => 'SubStringy', 'category' => 'substrings'
],
'surname' => [
'source' => 'FullNameParser', 'category' => 'names'
],
'titleize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'typogrify' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'typogrifyFeed' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'underscore' => [
'source' => 'Stringy', 'category' => 'casing'
],
'underscored' => [
'source' => 'Stringy', 'category' => 'casing'
],
'upperCamelize' => [
'source' => 'Stringy', 'category' => 'casing'
],
'upperCaseRoman' => [
'source' => 'internal', 'category' => 'roman-numerals'
],
'urlFragment' => [
'source' => 'internal', 'category' => 'urls'
],
'urlHost' => [
'source' => 'internal', 'category' => 'urls'
],
'urlPass' => [
'source' => 'internal', 'category' => 'urls'
],
'urlPath' => [
'source' => 'internal', 'category' => 'urls'
],
'urlPort' => [
'source' => 'internal', 'category' => 'urls'
],
'urlQuery' => [
'source' => 'internal', 'category' => 'urls'
],
'urlScheme' => [
'source' => 'internal', 'category' => 'urls'
],
'urlUser' => [
'source' => 'internal', 'category' => 'urls'
],
'trim' => [
'source' => 'internal', 'category' => 'truncation'
],
'trimLeft' => [
'source' => 'internal', 'category' => 'truncation'
],
'trimRight' => [
'source' => 'internal', 'category' => 'truncation'
],
'vimeoId' => [
'source' => 'internal', 'category' => 'urls'
],
'wc' => [
'source' => 'internal', 'category' => 'statistics'
],
'widont' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'wrapAmps' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'wrapCaps' => [
'source' => 'PHP-Typography', 'category' => 'typography', 'is_safe' => ['html']
],
'wordcount' => [
'source' => 'internal', 'category' => 'statistics'
],
'youtubeId' => [
'source' => 'internal', 'category' => 'urls'
],
// Internal junk methods
'test' => [
'source' => 'internal', 'category' => 'internal'
],
];
/*
* Public internal methods
* ===========================================================================
*/
/**
* @return array
*/
public function getMethodList()
{
return $this->_methods;
}
/*
* Public API methods
* a.k.a The ever-lovin Beef
* ===========================================================================
*/
/**
* Alias for `wrapAmps()`
*
* @param string $s
* @param string $class
* @return string
*/
public function amp($s, $class = 'amp'): string
{
return $this->wrapAmps($s, $class);
}
/**
* Intelligently up-cases a string as a headline/title using AP capitalization rules.
*
* @param string $s
* @param array $protectedWords
* @return string
*/
public function apTitleize($s, $protectedWords = []): string
{
$minorWords = Wordsmith::getInstance()->getSettings()->minorTitleWords;
$protectedWords = array_merge(Wordsmith::getInstance()->getSettings()->protectedTitleWords, $protectedWords);
return (new APTitleCapitalizer($protectedWords, $minorWords))->capitalize($s);
}
/**
* Gives the Automated Readability Index of the text, from 0 to 12.
*
* @param $s
* @return int
*/
public function automatedReadabilityIndex($s): int
{
return (new TextStatistics())->automatedReadabilityIndex($s);
}
/**
* Returns the average number of words per sentence in the text.
*
* @param $s
* @return int
*/
public function averageWordsPerSentence($s): int
{
return (new TextStatistics())->averageWordsPerSentence($s);
}
/**
* Returns the substring between $start and $end, if found, or an empty
* string. An optional offset may be supplied from which to begin the
* search for the start string.
*
* c.f. Stringy::between()
*
* @param string $start Delimiter marking the start of the substring
* @param string $end Delimiter marking the end of the substring
* @param int $offset Index from which to begin the search
*
* @return string
*/
public function between($s, $start, $end, int $offset = 0): string
{
return (string) Stringy::create($s)->between($start, $end, $offset);
}
/**
* Returns a camelCase version of the string.
*
* c.f. Stringy::camelize()
*
* @param string $s
* @return string
*/
public function camelize($s): string
{
return (string) Stringy::create($s)->camelize();
}
/**
* Alias for `wrapCaps()`
*
* @param string $s
* @param string $class
* @return string
*/
public function caps($s, $class = 'caps'): string
{
return $this->wrapCaps($s, $class);
}
/**
* Helps chop your content down to a manageable size.
*
* @param $s
* @param int $limit
* @param string $unit
* @param null $append
* @param null $allowedTags
* @return string
*/
public function chop($s, $limit = 1, $unit = 'p', $append = null, $allowedTags = null): string
{
return (new Hacksaw())->chop($s, $limit, $unit, $append, $allowedTags);
}
/**
* Gives the Coleman-Liau Index of the text, from 0 to 12.
*
* @param $s
* @return int
*/
public function colemanLiauIndex($s): int
{
return (new TextStatistics())->colemanLiauIndex($s);
}
/**
* Gives the Dale-Chall readability score of the text, from 0 to 10.
*
* @param $s
* @return int
*/
public function daleChallReadabilityScore($s): int
{
return (new TextStatistics())->daleChallReadabilityScore($s);
}
/**
* Returns a lowercase and trimmed string separated by dashes.
*
* c.f. Stringy::dasherize()
*
* @param string $s
* @return string
*/
public function dasherize($s): string
{
return (string) Stringy::create($s)->dasherize();
}
/**
* Replaces emoticons and Emoji name codes in text with their actual Unicode Emoji characters.
*
* @param $s
* @param string $name_delimiter
* @param string $emoticon_delimiter
*
* @return string
*/
public function emojify($s, $name_delimiter = ':', $emoticon_delimiter = ''): string
{
return Wordsmith::getInstance()->emoji->emojify($s, $name_delimiter, $name_delimiter, $emoticon_delimiter, $emoticon_delimiter);
}
/**
* Alias for `apTitleize()`
*
* @param $s
* @return string
*/
public function entitle($s): string
{
return $this->apTitleize($s);
}
/**
* Alias for `givenName()`
*
* Attempts to parse a string as a name and returns the first/given name component.
*
* @param $s
* @return string
*/
public function firstName($s): string
{
return $this->givenName($s);
}
/**
* Returns the first word in the string, or an empty string if the source string is empty.
*
* @param $s
* @return string|null
*/
public function firstWord($s)
{
if (empty($s))
{
return null;
}
return (Stringy::create($s)->collapseWhitespace()->split(' ', 2))[0];
}
/**
* Gives the Flesch-Kincaid Reading Ease of the text, from 0 to 100.
*
* @param $s
* @return int
*/
public function fleschKincaidReadingEase($s): int
{
return (new TextStatistics())->fleschKincaidReadingEase($s);
}
/**
* Gives the Flesch-Kincaid Grade level of the text, from 0 to 12.
*
* @param $s
* @return int
*/
public function fleschKincaidGradeLevel($s): int
{
return (new TextStatistics())->fleschKincaidGradeLevel($s);
}
/**
* Gives the Gunning-Fog score of the text, from 0 to 19.
*
* @param $s
* @return int
*/
public function gunningFogScore($s): int
{
return (new TextStatistics())->gunningFogScore($s);
}
/**
* Attempts to parse a string as a name and returns the first/given name component.
*
* @param $s
* @return string
*/
public function givenName($s): string
{
$parts = $this->parseName($s);
return $parts['givenName'];
}
/**
* Alias for `chop()`
*
* Provides additional parameters beyond the `chop` method in order to provide
* backwards compatibility with the old Hacksaw plugins.
*
* @param $s
* @param string $unit
* @param int $limit
* @param null $allowedTags
* @param null $append
* @param null $hack
* @param null $allow
* @param null $chars
* @param null $chars_start
* @param null $words
* @return string
*/
public function hacksaw($s, $unit = 'p', $limit = 1, $allowedTags = null, $append = null, $hack = null, $allow = null, $chars = null, $chars_start = null, $words = null): string
{
if ($hack !== null)
{
$unit = $hack;
}
if ($allow !== null)
{
$allowedTags = $allow;
}
if ($chars !== null)
{
$unit = 'c';
$limit = $chars;
if ($chars_start !== null)
{
$s = mb_substr($s, $chars_start);
}
}
if ($words !== null)
{
$unit = 'w';
$limit = $words;
}
return $this->chop($s, $limit, $unit, $append, $allowedTags);
}
/**
* Capitalizes the first word of the string, replaces underscores with spaces, and strips away an '_id' suffix if
* one is present.
*
* c.f. Stringy::humanize()
*
* @param string $s
* @return string
*/
public function humanize($s): string
{
return Stringy::create($s)->humanize();
}
/**
* Alias for `dasherize()`
*
* @param string $s
* @return string
*/
public function hyphenate($s): string
{
return $this->dasherize($s);
}
/**
* Returns whether a thingy is stringy.
*
* Thingies that are stringy include: a string, a printable number, or a string-castable object
*
* @param $thingy
* @return bool
*/
public function isStringy($thingy): bool
{
return (
is_string($thingy)
|| is_numeric($thingy)
|| (is_object($thingy) && method_exists($thingy, '__toString'))
);
}
/**
* Alias for `surname()`
*
* Attempts to parse a string as a name and returns the surname (e.g. 'last name') component.
*
* @param $s
* @return string
*/
public function lastName($s): string
{
return $this->surname($s);
}
/**
* Returns the last word in the string, or an empty string if the source string is empty.
*
* @param $s
* @return string|null
*/
public function lastWord($s)
{
if (empty($s))
{
return null;
}
$words = Stringy::create($s)->collapseWhitespace()->split(' ');
return (string) current(end($words));
}
/**
* Lowercases any Roman numerals found in the string.
*
* @param $s
* @param string $matchMode
* @return string
*/
public function lowerCaseRoman($s, $matchMode = 'strict'): string
{
$result = RomanNumerals::romanNumeralMatchCallback(
$s,
$matchMode,
function (array $matches) {
if (empty($matches[1]))
{
return $matches[1];
}
return strtolower($matches[1]);
}
);
return $result;
}
/**
* Returns the ordinal suffix for the given number.
*
* @param $num
* @return string
*/
public function ordinal($num): string
{
return Inflector::get()->ordinal($num);
}
/**
* Returns the ordinalized variation of the given number.
*
* @param $num
* @return string
*/
public function ordinalize($num): string
{
return Inflector::get()->ordinalize($num);
}
/**
* Attempts to parse a string as a name and returns its component parts (i.e. firstName, lastName, etc.)
*
* c.f. FullNameParser::parse()
*
* (We hijack the return to provide nicer key names than FullNameParser uses out of the box.)
*
* @param $s
* @return array
*/
public function parseName($s): array
{
$parts = FullNameParser::parse($s);
return [
'nickname' => $parts['nickname'] ?? '',
'salutation' => $parts['salutation'],
'givenName' => $parts['fname'],
'firstName' => $parts['fname'],
'initials' => $parts['initials'],
'lastName' => $parts['lname'],
'surname' => $parts['lname'],
'lastNameBase' => $parts['lname_base'],
'surnameBase' => $parts['lname_base'],
'lastNameCompound' => $parts['lname_compound'],
'surnameCompound' => $parts['lname_compound'],
'suffix' => $parts['suffix'],
];
}
/**
* Attempts to parse a string as a URL and returns its component parts (i.e. scheme, host, path, etc.)
*
* @param $s
* @return array
*/
public function parseUrl($s): array
{
$parts = parse_url($s);
return [
'scheme' => $parts['scheme'] ?? null,
'host' => $parts['host'] ?? null,
'port' => $parts['port'] ?? null,
'user' => $parts['user'] ?? null,
'pass' => $parts['pass'] ?? null,
'path' => $parts['path'] ?? null,
'query' => $parts['query'] ?? null,
'fragment' => $parts['fragment'] ?? null,
];
}
/**
* Alias for `upperCamelize()`
*
* @param string $s
* @return string
*/
public function pascalize($s): string
{
return $this->upperCamelize($s);
}
/**
* Returns the correct singular/plural form of the given word, for the provided quantity and language.
*
* @param $s
* @param int $qty
* @param string $locale
* @return string
*/
public function pluralize($s, $qty = 2, $locale = 'en'): string
{
if (intval($qty) != 1)
{
return Inflector::get($locale)->pluralize($s);
}
return Inflector::get($locale)->singularize($s);
}
/**
* Calculates the units of time required for an average person to read the given passage of text.
*
* // TODO: Add label and inflection
*
* @param string $s
* @param int $rate
* @param int $minimum
* @return mixed
*/
public function readTime($s, $rate = 200, $minimum = 1)
{
$words = $this->wordcount($s);
return max(intval($minimum), floor($words / intval($rate)));
}
/**
* Returns an approximate count of sentences in the text.
*
* @param $s
* @return int
*/
public function sentenceCount($s): int
{
return (new TextStatistics())->sentenceCount($s);
}
/**
* Returns the singular form of the given word.
*
* @param $s
* @param string $locale
* @return string
*/
public function singularize($s, $locale = 'en'): string
{
return Inflector::get($locale)->singularize($s);
}
/**
* Converts the string into an URL slug.
*
* c.f. Stringy::slugify()
*
* @param string $s
* @return string
*/
public function slugify($s): string
{
return (string) Stringy::create($s)->slugify();
}
/**
* c.f. PHP-Typography
*
* @param string $s
* @return string
*/
public function smartypants($s, $settings = []): string
{
return Wordsmith::getInstance()->typography->smartypants($s, $settings);
}
/**
* Gives the SMOG Index of the text, from 0 to 12.
*
* @param $s
* @return int
*/
public function smogIndex($s): int
{
return (new TextStatistics())->smogIndex($s);
}
/**
* Gives the Spache readability score of the text, from 0 to 5.
* (This scale is not really suitable for measuring readability above grade 4.)
*
* @param $s
* @return int
*/
public function spacheReadabilityScore($s): int
{
return (new TextStatistics())->spacheReadabilityScore($s);
}
/**
* Gets the substring after the first occurrence of a separator.
* If no match is found returns an empty string.
*
* (We're hijacking the return from SubStringy to return a `null` instead of boolean `false` if the substring isn't matched.)
*
* c.f. SubStringy::substringAfterFirst()
*
* @param string $s
* @param string $separator
*
* @return string|null
*/
public function substringAfterFirst($s, $separator)
{
$s = SubStringy::create($s)->substringAfterFirst($separator);
return ($s === false ? null : $s);
}
/**
* Gets the substring after the last occurrence of a separator.
* If no match is found returns an empty string.
*
* (We're hijacking the return from SubStringy to return a `null` instead of boolean `false` if the substring isn't matched.)
*
* c.f. SubStringy::substringAfterLast()
*
* @param string $s
* @param string $separator
*
* @return Word
*/
public function substringAfterLast($s, $separator)
{
$s = SubStringy::create($s)->substringAfterLast($separator);
return ($s === false ? null : $s);
}
/**
* Gets the substring before the first occurrence of a separator.
* If no match is found returns an empty string.
*
* (We're hijacking the return from SubStringy to return a `null` instead of boolean `false` if the substring isn't matched.)
*
* c.f. SubStringy::substringBeforeFirst()
*
* @param string $s
* @param string $separator
*
* @return Word
*/
public function substringBeforeFirst($s, $separator)
{
$s = SubStringy::create($s)->substringBeforeFirst($separator);
return ($s === false ? null : $s);
}
/**
* Gets the substring before the last occurrence of a separator.
* If no match is found returns an empty string.
*
* (We're hijacking the return from SubStringy to return a `null` instead of boolean `false` if the substring isn't matched.)
*
* c.f. SubStringy::substringBeforeLast()
*
* @param string $s
* @param string $separator
*
* @return Word
*/
public function substringBeforeLast($s, $separator)
{
$s = SubStringy::create($s)->substringBeforeLast($separator);
return ($s === false ? null : $s);
}
/**
* Count occurrences of the substring in the source string.
*
* @param string $s
* @param string $substring
*
* c.f. SubStringy::substringCount()
*
* @return int
*/
public function substringCount($s, $substring): int
{
return SubStringy::create($s)->substringCount($substring);
}
/**
* Attempts to parse a string as a name and returns the surname (i.e. 'last name') component.
*
* @param $s
* @return string
*/
public function surname($s): string
{
$parts = $this->parseName($s);
return $parts['surname'];
}
/**
* Returns a trimmed string with the first letter of each word capitalized.
*
* c.f. Stringy::titleize()
*
* @param string $s
* @param array $ignore
* @return string
*/
public function titleize($s, $ignore = []): string
{
return (string) Stringy::create($s)->titleize($ignore);
}
/**
* Returns a string with whitespace removed from the start and end of the string.
*
* c.f. Stringy::trim()
*
* @param string $s
* @param string $chars
* @return string
*/
public function trim($s, $chars = null): string
{
return (string) Stringy::create($s)->trim($chars);
}
/**
* Returns a string with whitespace removed from the start of the string.
*
* c.f. Stringy::trimLeft()
*
* @param string $s
* @param string $chars
* @return string
*/
public function trimLeft($s, $chars = null): string
{
return (string) Stringy::create($s)->trimLeft($chars);
}
/**
* Returns a string with whitespace removed from the end of the string.
*
* c.f. Stringy::trimRight()
*
* @param string $s
* @param string $chars
* @return string