Declare properties for storing column position of a line in a file
Let's say I have a text file and a line like this:
This is an example line within a file.
What I need to do is to modify this line based on a prefixed column position, and an input expectedString.
For example:
When i want to modify "example" text from the line above:
I would start from position 11 of that line as an input, and take 7 characters.
It would be something like:
TestMethod1()
{
int posStart = 11;
int posEnd = 17;
ModifyLine(line number, posStart, posEnd, expectedString)
}
I may have many similar methods with the only different is the posStart, and posEnd. I want to change it to a shorter version like this:
TestMethod1()
{
ModifyLine(line number, examplePosStart, examplePosEnd, stringExpected)
}
+examplePosStart, examplePosEnd would be declared somewhere not in the same file.
class TextPosition
{
public constant int example1PosStart = 11;
public constant int example1PosEnd = 17;
public constant int example2PosStart = 18;
public constant int example2PosStart = 25;
}
I am wondering are there any other more optimal ways to declare all the posStarts, posEnds in one place like above?
c# variable-declaration
add a comment |
Let's say I have a text file and a line like this:
This is an example line within a file.
What I need to do is to modify this line based on a prefixed column position, and an input expectedString.
For example:
When i want to modify "example" text from the line above:
I would start from position 11 of that line as an input, and take 7 characters.
It would be something like:
TestMethod1()
{
int posStart = 11;
int posEnd = 17;
ModifyLine(line number, posStart, posEnd, expectedString)
}
I may have many similar methods with the only different is the posStart, and posEnd. I want to change it to a shorter version like this:
TestMethod1()
{
ModifyLine(line number, examplePosStart, examplePosEnd, stringExpected)
}
+examplePosStart, examplePosEnd would be declared somewhere not in the same file.
class TextPosition
{
public constant int example1PosStart = 11;
public constant int example1PosEnd = 17;
public constant int example2PosStart = 18;
public constant int example2PosStart = 25;
}
I am wondering are there any other more optimal ways to declare all the posStarts, posEnds in one place like above?
c# variable-declaration
add a comment |
Let's say I have a text file and a line like this:
This is an example line within a file.
What I need to do is to modify this line based on a prefixed column position, and an input expectedString.
For example:
When i want to modify "example" text from the line above:
I would start from position 11 of that line as an input, and take 7 characters.
It would be something like:
TestMethod1()
{
int posStart = 11;
int posEnd = 17;
ModifyLine(line number, posStart, posEnd, expectedString)
}
I may have many similar methods with the only different is the posStart, and posEnd. I want to change it to a shorter version like this:
TestMethod1()
{
ModifyLine(line number, examplePosStart, examplePosEnd, stringExpected)
}
+examplePosStart, examplePosEnd would be declared somewhere not in the same file.
class TextPosition
{
public constant int example1PosStart = 11;
public constant int example1PosEnd = 17;
public constant int example2PosStart = 18;
public constant int example2PosStart = 25;
}
I am wondering are there any other more optimal ways to declare all the posStarts, posEnds in one place like above?
c# variable-declaration
Let's say I have a text file and a line like this:
This is an example line within a file.
What I need to do is to modify this line based on a prefixed column position, and an input expectedString.
For example:
When i want to modify "example" text from the line above:
I would start from position 11 of that line as an input, and take 7 characters.
It would be something like:
TestMethod1()
{
int posStart = 11;
int posEnd = 17;
ModifyLine(line number, posStart, posEnd, expectedString)
}
I may have many similar methods with the only different is the posStart, and posEnd. I want to change it to a shorter version like this:
TestMethod1()
{
ModifyLine(line number, examplePosStart, examplePosEnd, stringExpected)
}
+examplePosStart, examplePosEnd would be declared somewhere not in the same file.
class TextPosition
{
public constant int example1PosStart = 11;
public constant int example1PosEnd = 17;
public constant int example2PosStart = 18;
public constant int example2PosStart = 25;
}
I am wondering are there any other more optimal ways to declare all the posStarts, posEnds in one place like above?
c# variable-declaration
c# variable-declaration
asked Dec 31 '18 at 16:47
Quan HuynhQuan Huynh
101
101
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use an array
public class TextPosition
{
public int StartPos { get; set; }
public int EndPos { get; set; }
public static readonly TextPosition Positions = new {
new TextPosition { StartPos = 11, EndPos = 17 },
new TextPosition { StartPos = 18, EndPos = 25 }
}
}
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%2f53989645%2fdeclare-properties-for-storing-column-position-of-a-line-in-a-file%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
You can use an array
public class TextPosition
{
public int StartPos { get; set; }
public int EndPos { get; set; }
public static readonly TextPosition Positions = new {
new TextPosition { StartPos = 11, EndPos = 17 },
new TextPosition { StartPos = 18, EndPos = 25 }
}
}
add a comment |
You can use an array
public class TextPosition
{
public int StartPos { get; set; }
public int EndPos { get; set; }
public static readonly TextPosition Positions = new {
new TextPosition { StartPos = 11, EndPos = 17 },
new TextPosition { StartPos = 18, EndPos = 25 }
}
}
add a comment |
You can use an array
public class TextPosition
{
public int StartPos { get; set; }
public int EndPos { get; set; }
public static readonly TextPosition Positions = new {
new TextPosition { StartPos = 11, EndPos = 17 },
new TextPosition { StartPos = 18, EndPos = 25 }
}
}
You can use an array
public class TextPosition
{
public int StartPos { get; set; }
public int EndPos { get; set; }
public static readonly TextPosition Positions = new {
new TextPosition { StartPos = 11, EndPos = 17 },
new TextPosition { StartPos = 18, EndPos = 25 }
}
}
answered Dec 31 '18 at 17:53
Olivier Jacot-DescombesOlivier Jacot-Descombes
67.1k885138
67.1k885138
add a comment |
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%2f53989645%2fdeclare-properties-for-storing-column-position-of-a-line-in-a-file%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