Get first word of every line

user2819389

I need to get every first word of the lines in my $lines. So I'm doing an foreach on every line like this:

foreach ($lines as $n => $line) {

}

But then the next part, I need to grab only the first word. So I did this with exploding on a space like this:

$explode = explode(" ", $line);
echo $explode[0];

But this is very slow when I do it with many lines, is there a better and faster solution then using an explode() ?

Patrick Moore

Yes!

$var = substr( $line, 0, strpos( $line, ' ' ) );

substr() trims a string using start position (0, the beginning) and length: http://php.net/manual/en/function.substr.php

We determine the length by using strpos() to find the first occurrence of the search phrase (in this case, a space): http://php.net/manual/en/function.strpos.php

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Get first word of every line

From Dev

Get first word of every line with AWK or SED?

From Dev

How to get first word of every line and pipe it into dmenu script

From Dev

Get first word on every new line in a long string?

From Dev

get the first letter of every word inside li

From Dev

Replace the first word of every line in a file with the line number

From Dev

printing first word in every line of a txt file unix bash

From Dev

Swapping the first two word of every line without using sed

From Dev

How to select the first word of every line and attribute it to an array in a bash script

From Dev

bash get first word last line

From Dev

How to get first letter of every word using regex in PHP

From Dev

Get the first word of line when regex pattern match in python

From Dev

Print first word of first line and last word

From Dev

RegExp for every word except first word of a sentence

From Dev

How to remove a specific character only from the first word in a line for every column?

From Dev

Replacing first occurence in every line

From Java

Get first word of string

From Dev

First word on one line CSS

From Dev

Insert a word in the first line of the file

From Dev

vim: replace word with first word of line

From Dev

Capitalize first letter of every word in Lua

From Dev

Capitalize the first letter of every word in Scala

From Dev

How to capitalize first word in every sentence with Swift

From Dev

How to capitalise the first letter of every word in a string

From Dev

Capitalize the first letter of every word in array

From Dev

Transforming the first char of every word in a sentence to uppercase

From Dev

Capitalize first letter of every word in Lua

From Dev

How to capitalise the first letter of every word in a string

From Dev

How to add a word at the first of every lines?

Related Related

  1. 1

    Get first word of every line

  2. 2

    Get first word of every line with AWK or SED?

  3. 3

    How to get first word of every line and pipe it into dmenu script

  4. 4

    Get first word on every new line in a long string?

  5. 5

    get the first letter of every word inside li

  6. 6

    Replace the first word of every line in a file with the line number

  7. 7

    printing first word in every line of a txt file unix bash

  8. 8

    Swapping the first two word of every line without using sed

  9. 9

    How to select the first word of every line and attribute it to an array in a bash script

  10. 10

    bash get first word last line

  11. 11

    How to get first letter of every word using regex in PHP

  12. 12

    Get the first word of line when regex pattern match in python

  13. 13

    Print first word of first line and last word

  14. 14

    RegExp for every word except first word of a sentence

  15. 15

    How to remove a specific character only from the first word in a line for every column?

  16. 16

    Replacing first occurence in every line

  17. 17

    Get first word of string

  18. 18

    First word on one line CSS

  19. 19

    Insert a word in the first line of the file

  20. 20

    vim: replace word with first word of line

  21. 21

    Capitalize first letter of every word in Lua

  22. 22

    Capitalize the first letter of every word in Scala

  23. 23

    How to capitalize first word in every sentence with Swift

  24. 24

    How to capitalise the first letter of every word in a string

  25. 25

    Capitalize the first letter of every word in array

  26. 26

    Transforming the first char of every word in a sentence to uppercase

  27. 27

    Capitalize first letter of every word in Lua

  28. 28

    How to capitalise the first letter of every word in a string

  29. 29

    How to add a word at the first of every lines?

HotTag

Archive