Count number of instances of a character and use it in a condition
I have a csv file (t.txt) in which some lines have 7 commas and some have 8
If the line has 8 commas, I want to remove the 2nd comma in that line.
Any suggestions? I have been trying
if [[awk -F "," '{print NF-1}' == 8]]; then sed 's/,//2'; t.txt
awk replace condition
add a comment |
I have a csv file (t.txt) in which some lines have 7 commas and some have 8
If the line has 8 commas, I want to remove the 2nd comma in that line.
Any suggestions? I have been trying
if [[awk -F "," '{print NF-1}' == 8]]; then sed 's/,//2'; t.txt
awk replace condition
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS{}
button, you could do so now.
– RavinderSingh13
Nov 16 '18 at 1:59
add a comment |
I have a csv file (t.txt) in which some lines have 7 commas and some have 8
If the line has 8 commas, I want to remove the 2nd comma in that line.
Any suggestions? I have been trying
if [[awk -F "," '{print NF-1}' == 8]]; then sed 's/,//2'; t.txt
awk replace condition
I have a csv file (t.txt) in which some lines have 7 commas and some have 8
If the line has 8 commas, I want to remove the 2nd comma in that line.
Any suggestions? I have been trying
if [[awk -F "," '{print NF-1}' == 8]]; then sed 's/,//2'; t.txt
awk replace condition
awk replace condition
edited Nov 22 '18 at 15:44
codeforester
18.6k84267
18.6k84267
asked Nov 16 '18 at 1:37
Chinmay KallurayaChinmay Kalluraya
102
102
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS{}
button, you could do so now.
– RavinderSingh13
Nov 16 '18 at 1:59
add a comment |
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS{}
button, you could do so now.
– RavinderSingh13
Nov 16 '18 at 1:59
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS
{}
button, you could do so now.– RavinderSingh13
Nov 16 '18 at 1:59
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS
{}
button, you could do so now.– RavinderSingh13
Nov 16 '18 at 1:59
add a comment |
1 Answer
1
active
oldest
votes
Since you haven't provided samples of Input_file or expected output so couldn't test, could you please try following.
echo "a,a,a,d,f,g,h,h,f" |
awk '
match($0,/,[^,]*/){
print substr($0,1,RSTART-1) substr($0,RSTART,RLENGTH) substr($0,RSTART+RLENGTH+1)
next
}
1'
a,aa,d,f,g,h,h,f
In case you want to check 8 commas condition too then replace match
with match($0,/,[^,]*/) && NF==9
to above code too.
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18: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%2f53330247%2fcount-number-of-instances-of-a-character-and-use-it-in-a-condition%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since you haven't provided samples of Input_file or expected output so couldn't test, could you please try following.
echo "a,a,a,d,f,g,h,h,f" |
awk '
match($0,/,[^,]*/){
print substr($0,1,RSTART-1) substr($0,RSTART,RLENGTH) substr($0,RSTART+RLENGTH+1)
next
}
1'
a,aa,d,f,g,h,h,f
In case you want to check 8 commas condition too then replace match
with match($0,/,[^,]*/) && NF==9
to above code too.
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18:37
add a comment |
Since you haven't provided samples of Input_file or expected output so couldn't test, could you please try following.
echo "a,a,a,d,f,g,h,h,f" |
awk '
match($0,/,[^,]*/){
print substr($0,1,RSTART-1) substr($0,RSTART,RLENGTH) substr($0,RSTART+RLENGTH+1)
next
}
1'
a,aa,d,f,g,h,h,f
In case you want to check 8 commas condition too then replace match
with match($0,/,[^,]*/) && NF==9
to above code too.
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18:37
add a comment |
Since you haven't provided samples of Input_file or expected output so couldn't test, could you please try following.
echo "a,a,a,d,f,g,h,h,f" |
awk '
match($0,/,[^,]*/){
print substr($0,1,RSTART-1) substr($0,RSTART,RLENGTH) substr($0,RSTART+RLENGTH+1)
next
}
1'
a,aa,d,f,g,h,h,f
In case you want to check 8 commas condition too then replace match
with match($0,/,[^,]*/) && NF==9
to above code too.
Since you haven't provided samples of Input_file or expected output so couldn't test, could you please try following.
echo "a,a,a,d,f,g,h,h,f" |
awk '
match($0,/,[^,]*/){
print substr($0,1,RSTART-1) substr($0,RSTART,RLENGTH) substr($0,RSTART+RLENGTH+1)
next
}
1'
a,aa,d,f,g,h,h,f
In case you want to check 8 commas condition too then replace match
with match($0,/,[^,]*/) && NF==9
to above code too.
answered Nov 16 '18 at 1:58
RavinderSingh13RavinderSingh13
30.3k41639
30.3k41639
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18:37
add a comment |
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18:37
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18:37
@Chinmay Kalluraya, give it sometime after your question and then try to select any answer out of all answers as correct one to close the thread fully.
– RavinderSingh13
Nov 16 '18 at 18: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.
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%2f53330247%2fcount-number-of-instances-of-a-character-and-use-it-in-a-condition%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
Welcome to SO, it is always recommended to add sample of Input and expected output along with your efforts in your post in CODE TAGS
{}
button, you could do so now.– RavinderSingh13
Nov 16 '18 at 1:59