How to split a string that contains a set in Ruby?
I am new to the forum. I am currently trying to take this string:
65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010
and split it in order to get this:
65101km
Sedan
Manual
18131A
FWD
Used
5.5L/100km
Toyota
camry
SE
{AC, Heated Seats, Heated Mirrors, Keyless Entry}
2010
I have the following regex:
data_from_file.split(/[{},]+/)
But I am having a hard time keeping the set.
Any ideas?
ruby regex split
add a comment |
I am new to the forum. I am currently trying to take this string:
65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010
and split it in order to get this:
65101km
Sedan
Manual
18131A
FWD
Used
5.5L/100km
Toyota
camry
SE
{AC, Heated Seats, Heated Mirrors, Keyless Entry}
2010
I have the following regex:
data_from_file.split(/[{},]+/)
But I am having a hard time keeping the set.
Any ideas?
ruby regex split
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.
– Cary Swoveland
Nov 17 '18 at 20:23
add a comment |
I am new to the forum. I am currently trying to take this string:
65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010
and split it in order to get this:
65101km
Sedan
Manual
18131A
FWD
Used
5.5L/100km
Toyota
camry
SE
{AC, Heated Seats, Heated Mirrors, Keyless Entry}
2010
I have the following regex:
data_from_file.split(/[{},]+/)
But I am having a hard time keeping the set.
Any ideas?
ruby regex split
I am new to the forum. I am currently trying to take this string:
65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010
and split it in order to get this:
65101km
Sedan
Manual
18131A
FWD
Used
5.5L/100km
Toyota
camry
SE
{AC, Heated Seats, Heated Mirrors, Keyless Entry}
2010
I have the following regex:
data_from_file.split(/[{},]+/)
But I am having a hard time keeping the set.
Any ideas?
ruby regex split
ruby regex split
asked Nov 16 '18 at 15:13
Andres V.
234
234
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.
– Cary Swoveland
Nov 17 '18 at 20:23
add a comment |
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.
– Cary Swoveland
Nov 17 '18 at 20:23
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (
["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.– Cary Swoveland
Nov 17 '18 at 20:23
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (
["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.– Cary Swoveland
Nov 17 '18 at 20:23
add a comment |
2 Answers
2
active
oldest
votes
You may use
s.scan(/(?:{[^{}]*}|[^,])+/)
See the Rubular and Regex.101 demos.
Pattern details
(?:
- start of a non-capturing group:
{[^{}]*}
-{
, 0 or more chars other than{
and}
and then}
|
- or
[^,]
- any 1 char other than,
)+
- repeated 1 or more times.
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
add a comment |
str = "65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010"
r = /
(?<=A|,) # match the beginning of the string or a comma in a positive lookbehind
(?: # begin a non-capture group
{.*?} # match an open brace followed by any number of characters,
# lazily, followed by a closed brace
| # or
.*? # match any number of characters, lazily
) # close non-capture group
(?=,|z) # match a comma or the end of the string in a positive lookahead
/x # free-spacing regex definition mode
str.scan r
#=> ["65101km", "Sedan", "Manual", "18131A", "FWD", "Used", "5.5L/100km", "Toyota",
# "camry", "SE", "{AC,Heated Seats, Heated Mirrors, Keyless Entry}", "2010"]
Two notes follow. I'll illustrate these with a simpler string.
str = "65101km,Sedan,{AC,Heated Seats},2010"
{.*?}
must precede .*?
in (?:{.*?}|.*?)
If
r = /(?<=A|,)(?:.*?|{.*?})(?=,|z)/
then
str.scan r
#=> ["65101km", "Sedan", "{AC", "Heated Seats}", "2010"]
The matches .*
must be lazy (aka non-greedy)
If
r = /(?<=A|,)(?:{.*?}|.*)(?=,|z)/
then
str.scan r
#=> ["65101km,Sedan,{AC,Heated Seats},2010"]
If
r = /(?<=A|,)(?:{.*}|.*?)(?=,|z)/
then
"65101km,Sedan,{AC,Heated Seats},2010,{starter motor, pneumatic tires}".scan r
#=> ["65101km", "Sedan", "{AC,Heated Seats},2010,{starter motor, pneumatic tires}"]
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
What can I say? Ruby matches"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?
– Cary Swoveland
Nov 16 '18 at 16:21
1
At Regex101,2010
is matched.
– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53340560%2fhow-to-split-a-string-that-contains-a-set-in-ruby%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You may use
s.scan(/(?:{[^{}]*}|[^,])+/)
See the Rubular and Regex.101 demos.
Pattern details
(?:
- start of a non-capturing group:
{[^{}]*}
-{
, 0 or more chars other than{
and}
and then}
|
- or
[^,]
- any 1 char other than,
)+
- repeated 1 or more times.
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
add a comment |
You may use
s.scan(/(?:{[^{}]*}|[^,])+/)
See the Rubular and Regex.101 demos.
Pattern details
(?:
- start of a non-capturing group:
{[^{}]*}
-{
, 0 or more chars other than{
and}
and then}
|
- or
[^,]
- any 1 char other than,
)+
- repeated 1 or more times.
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
add a comment |
You may use
s.scan(/(?:{[^{}]*}|[^,])+/)
See the Rubular and Regex.101 demos.
Pattern details
(?:
- start of a non-capturing group:
{[^{}]*}
-{
, 0 or more chars other than{
and}
and then}
|
- or
[^,]
- any 1 char other than,
)+
- repeated 1 or more times.
You may use
s.scan(/(?:{[^{}]*}|[^,])+/)
See the Rubular and Regex.101 demos.
Pattern details
(?:
- start of a non-capturing group:
{[^{}]*}
-{
, 0 or more chars other than{
and}
and then}
|
- or
[^,]
- any 1 char other than,
)+
- repeated 1 or more times.
answered Nov 16 '18 at 16:55
Wiktor Stribiżew
308k16126202
308k16126202
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
add a comment |
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
1
1
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
Simple and clean!
– Cary Swoveland
Nov 17 '18 at 3:05
1
1
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
This is really nice! Thank you so much
– Andres V.
Nov 17 '18 at 17:39
add a comment |
str = "65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010"
r = /
(?<=A|,) # match the beginning of the string or a comma in a positive lookbehind
(?: # begin a non-capture group
{.*?} # match an open brace followed by any number of characters,
# lazily, followed by a closed brace
| # or
.*? # match any number of characters, lazily
) # close non-capture group
(?=,|z) # match a comma or the end of the string in a positive lookahead
/x # free-spacing regex definition mode
str.scan r
#=> ["65101km", "Sedan", "Manual", "18131A", "FWD", "Used", "5.5L/100km", "Toyota",
# "camry", "SE", "{AC,Heated Seats, Heated Mirrors, Keyless Entry}", "2010"]
Two notes follow. I'll illustrate these with a simpler string.
str = "65101km,Sedan,{AC,Heated Seats},2010"
{.*?}
must precede .*?
in (?:{.*?}|.*?)
If
r = /(?<=A|,)(?:.*?|{.*?})(?=,|z)/
then
str.scan r
#=> ["65101km", "Sedan", "{AC", "Heated Seats}", "2010"]
The matches .*
must be lazy (aka non-greedy)
If
r = /(?<=A|,)(?:{.*?}|.*)(?=,|z)/
then
str.scan r
#=> ["65101km,Sedan,{AC,Heated Seats},2010"]
If
r = /(?<=A|,)(?:{.*}|.*?)(?=,|z)/
then
"65101km,Sedan,{AC,Heated Seats},2010,{starter motor, pneumatic tires}".scan r
#=> ["65101km", "Sedan", "{AC,Heated Seats},2010,{starter motor, pneumatic tires}"]
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
What can I say? Ruby matches"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?
– Cary Swoveland
Nov 16 '18 at 16:21
1
At Regex101,2010
is matched.
– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
add a comment |
str = "65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010"
r = /
(?<=A|,) # match the beginning of the string or a comma in a positive lookbehind
(?: # begin a non-capture group
{.*?} # match an open brace followed by any number of characters,
# lazily, followed by a closed brace
| # or
.*? # match any number of characters, lazily
) # close non-capture group
(?=,|z) # match a comma or the end of the string in a positive lookahead
/x # free-spacing regex definition mode
str.scan r
#=> ["65101km", "Sedan", "Manual", "18131A", "FWD", "Used", "5.5L/100km", "Toyota",
# "camry", "SE", "{AC,Heated Seats, Heated Mirrors, Keyless Entry}", "2010"]
Two notes follow. I'll illustrate these with a simpler string.
str = "65101km,Sedan,{AC,Heated Seats},2010"
{.*?}
must precede .*?
in (?:{.*?}|.*?)
If
r = /(?<=A|,)(?:.*?|{.*?})(?=,|z)/
then
str.scan r
#=> ["65101km", "Sedan", "{AC", "Heated Seats}", "2010"]
The matches .*
must be lazy (aka non-greedy)
If
r = /(?<=A|,)(?:{.*?}|.*)(?=,|z)/
then
str.scan r
#=> ["65101km,Sedan,{AC,Heated Seats},2010"]
If
r = /(?<=A|,)(?:{.*}|.*?)(?=,|z)/
then
"65101km,Sedan,{AC,Heated Seats},2010,{starter motor, pneumatic tires}".scan r
#=> ["65101km", "Sedan", "{AC,Heated Seats},2010,{starter motor, pneumatic tires}"]
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
What can I say? Ruby matches"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?
– Cary Swoveland
Nov 16 '18 at 16:21
1
At Regex101,2010
is matched.
– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
add a comment |
str = "65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010"
r = /
(?<=A|,) # match the beginning of the string or a comma in a positive lookbehind
(?: # begin a non-capture group
{.*?} # match an open brace followed by any number of characters,
# lazily, followed by a closed brace
| # or
.*? # match any number of characters, lazily
) # close non-capture group
(?=,|z) # match a comma or the end of the string in a positive lookahead
/x # free-spacing regex definition mode
str.scan r
#=> ["65101km", "Sedan", "Manual", "18131A", "FWD", "Used", "5.5L/100km", "Toyota",
# "camry", "SE", "{AC,Heated Seats, Heated Mirrors, Keyless Entry}", "2010"]
Two notes follow. I'll illustrate these with a simpler string.
str = "65101km,Sedan,{AC,Heated Seats},2010"
{.*?}
must precede .*?
in (?:{.*?}|.*?)
If
r = /(?<=A|,)(?:.*?|{.*?})(?=,|z)/
then
str.scan r
#=> ["65101km", "Sedan", "{AC", "Heated Seats}", "2010"]
The matches .*
must be lazy (aka non-greedy)
If
r = /(?<=A|,)(?:{.*?}|.*)(?=,|z)/
then
str.scan r
#=> ["65101km,Sedan,{AC,Heated Seats},2010"]
If
r = /(?<=A|,)(?:{.*}|.*?)(?=,|z)/
then
"65101km,Sedan,{AC,Heated Seats},2010,{starter motor, pneumatic tires}".scan r
#=> ["65101km", "Sedan", "{AC,Heated Seats},2010,{starter motor, pneumatic tires}"]
str = "65101km,Sedan,Manual,18131A,FWD,Used,5.5L/100km,Toyota,camry,SE,{AC,Heated Seats, Heated Mirrors, Keyless Entry},2010"
r = /
(?<=A|,) # match the beginning of the string or a comma in a positive lookbehind
(?: # begin a non-capture group
{.*?} # match an open brace followed by any number of characters,
# lazily, followed by a closed brace
| # or
.*? # match any number of characters, lazily
) # close non-capture group
(?=,|z) # match a comma or the end of the string in a positive lookahead
/x # free-spacing regex definition mode
str.scan r
#=> ["65101km", "Sedan", "Manual", "18131A", "FWD", "Used", "5.5L/100km", "Toyota",
# "camry", "SE", "{AC,Heated Seats, Heated Mirrors, Keyless Entry}", "2010"]
Two notes follow. I'll illustrate these with a simpler string.
str = "65101km,Sedan,{AC,Heated Seats},2010"
{.*?}
must precede .*?
in (?:{.*?}|.*?)
If
r = /(?<=A|,)(?:.*?|{.*?})(?=,|z)/
then
str.scan r
#=> ["65101km", "Sedan", "{AC", "Heated Seats}", "2010"]
The matches .*
must be lazy (aka non-greedy)
If
r = /(?<=A|,)(?:{.*?}|.*)(?=,|z)/
then
str.scan r
#=> ["65101km,Sedan,{AC,Heated Seats},2010"]
If
r = /(?<=A|,)(?:{.*}|.*?)(?=,|z)/
then
"65101km,Sedan,{AC,Heated Seats},2010,{starter motor, pneumatic tires}".scan r
#=> ["65101km", "Sedan", "{AC,Heated Seats},2010,{starter motor, pneumatic tires}"]
edited Nov 16 '18 at 17:50
answered Nov 16 '18 at 15:55
Cary Swoveland
67.6k53965
67.6k53965
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
What can I say? Ruby matches"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?
– Cary Swoveland
Nov 16 '18 at 16:21
1
At Regex101,2010
is matched.
– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
add a comment |
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
What can I say? Ruby matches"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?
– Cary Swoveland
Nov 16 '18 at 16:21
1
At Regex101,2010
is matched.
– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
Hey Cary, for some reason when I put this on regex101, it doesn't read the 2010 at the end. I thank you for the answer !
– Andres V.
Nov 16 '18 at 16:03
1
1
What can I say? Ruby matches
"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?– Cary Swoveland
Nov 16 '18 at 16:21
What can I say? Ruby matches
"2010"
. Did you perchance test with a string that contains a space between the last comma and "2010"?– Cary Swoveland
Nov 16 '18 at 16:21
1
1
At Regex101,
2010
is matched.– Wiktor Stribiżew
Nov 16 '18 at 16:53
At Regex101,
2010
is matched.– Wiktor Stribiżew
Nov 16 '18 at 16:53
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
just tried it out its perfect! Thanks guys. I had put a space like Gary said.
– Andres V.
Nov 17 '18 at 17:37
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53340560%2fhow-to-split-a-string-that-contains-a-set-in-ruby%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Maybe this answer will be useful: stackoverflow.com/questions/42475528/… will hel
– vovan
Nov 16 '18 at 15:57
In future, please ensure all values in examples are valid Ruby objects. Here that would mean putting the string in quotes and displaying the output as an array of strings (
["65101km", "Sedan",..., "2010"]
). Here your intent is clear, but if your array had been an input every reader who wanted to use it in code would have to convert it to a valid object. Also, it's helpful to assign a variable to all inputs (here just one) in your example (str = "65101km,..."
), so readers can refer to those variables in answers and comments. In case you didn't know, you can upvote answers you checkmark.– Cary Swoveland
Nov 17 '18 at 20:23