Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

ReadAllText - String

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • NinjaTrader_PatrickH
    replied
    Hello suprsnipes,

    I am glad you were able to figure this out and thanks to koganam for the assistance.

    Leave a comment:


  • suprsnipes
    replied
    Why not? "AB1" is a string, not a concatenation of a string and an int, which would be meaningless anyway, as those 2 entities are completely different objects. Just read it as the string that it is and be done with it.
    I'm sure this is simple but I'm not sure how to do this. What object should I be using and instead of using the following? What do I need to change?

    Code:
    // Saves the first value
    if (splitCounter == 2)
    {
    upcomingPhase = double.Parse(s);
    }
    Regards,
    suprsnipes

    Ok. Obviously I'm not a programmer but whilst waiting for a reply I come across an example that simply uses 's' and changing the variable to a string works, thanks for the hint koganam.
    Last edited by suprsnipes; 05-15-2015, 01:28 AM.

    Leave a comment:


  • koganam
    replied
    Originally posted by suprsnipes View Post
    Hi,

    I have not attempted to use this method to read a text file that contains a combination of 2 letters and a number, for example AB1 before and not sure if I can. Obviously it is not an integer or double and I can't use string.Parse(s), the error message I am getting in the output window is "Input string was not in a correct format."

    Can anyone offer any help as to how I could read this text document.

    Regards,
    suprsnipes
    Why not? "AB1" is a string, not a concatenation of a string and an int, which would be meaningless anyway, as those 2 entities are completely different objects. Just read it as the string that it is and be done with it.

    Leave a comment:


  • Calonious
    replied
    Originally posted by suprsnipes View Post
    Hi,

    I have not attempted to use this method to read a text file that contains a combination of 2 letters and a number, for example AB1 before and not sure if I can. Obviously it is not an integer or double and I can't use string.Parse(s), the error message I am getting in the output window is "Input string was not in a correct format."

    Can anyone offer any help as to how I could read this text document.

    Regards,
    suprsnipes
    I think your best bet would be to use a LINQ expression for this -
    Code:
    string input = AB1;
    string output = new String(input.Where(c => c < '0' || c > '9').ToArray());
    This will take the entire string of input and then skip over the numeric values of the string and grab the other characters and through them into a new string.

    Leave a comment:


  • suprsnipes
    started a topic ReadAllText - String

    ReadAllText - String

    Hi,

    I have not attempted to use this method to read a text file that contains a combination of 2 letters and a number, for example AB1 before and not sure if I can. Obviously it is not an integer or double and I can't use string.Parse(s), the error message I am getting in the output window is "Input string was not in a correct format."

    Can anyone offer any help as to how I could read this text document.

    Regards,
    suprsnipes

Latest Posts

Collapse

Topics Statistics Last Post
Started by aussugardefender, Today, 01:07 AM
0 responses
3 views
0 likes
Last Post aussugardefender  
Started by pvincent, 06-23-2022, 12:53 PM
14 responses
238 views
0 likes
Last Post Nyman
by Nyman
 
Started by TraderG23, 12-08-2023, 07:56 AM
9 responses
384 views
1 like
Last Post Gavini
by Gavini
 
Started by oviejo, Today, 12:28 AM
0 responses
4 views
0 likes
Last Post oviejo
by oviejo
 
Started by pechtri, 06-22-2023, 02:31 AM
10 responses
125 views
0 likes
Last Post Leeroy_Jenkins  
Working...
X