Example A: "Example One"
What I need is a string method to remove " One" from that string so the result is just "Example".
I'm sure this is very simple but I just require a swift response.
Thanks.
Example A: "Example One"
What I need is a string method to remove " One" from that string so the result is just "Example".
I'm sure this is very simple but I just require a swift response.
Thanks.
How about "Example One".split?
--wpd
Pale Horse wrote:
Example A: "Example One"
What I need is a string method to remove " One" from that string so the result is just "Example".
I'm sure this is very simple but I just require a swift response.
Thanks.
a = "Example One" a = a.split(/ /)[0]
In general, the way to solve a problem is to try and tackle it from different angles. Do you want to ... a) remove everything after 'Example'? b) remove the last four characters of the string? c) remove everything after the first word? d) remove the last word and the last space?
a = "Example One" a = a.split(/ /)[0]
In general, the way to solve a problem is to try and tackle it from different angles. Do you want to ... a) remove everything after 'Example'? b) remove the last four characters of the string? c) remove everything after the first word? d) remove the last word and the last space?
I want to remove everything after the first word.
Quoting Pale Horse <lists@ruby-forum.com>:
Example A: "Example One"
What I need is a string method to remove " One" from that string so the result is just "Example".
irb(main):010:0> "Example One and trailing stufff".split(' ', 2)[0] => "Example"
irb(main):014:0> "Example One and trailing stuff".slice(/\w+/) => "Example"
HTH, Jeffrey
Pale Horse wrote:
a = "Example One" a = a.split(/ /)[0]
In general, the way to solve a problem is to try and tackle it from different angles. Do you want to ... a) remove everything after 'Example'? b) remove the last four characters of the string? c) remove everything after the first word? d) remove the last word and the last space?
I want to remove everything after the first word.
Well, then my solution works for you, but you should familiarize yourself with it. http://ruby-doc.org/core/
Go check out the String methods.