Community

    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    how to group words in batch of 50's

    Help wanted · · · – – – · · ·
    2
    2
    1322
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Edward Thompson
      Edward Thompson last edited by

      how to group words in batch of 50’s

      1 Reply Last reply Reply Quote 0
      • Jim Dailey
        Jim Dailey last edited by Jim Dailey

        WordsRemaining = GetWordCount(Input);
        while (WordsRemaining >= 50) {
        Batch(50,Input);
        WordsRemaining -= 50;
        }
        Batch(WordsRemaining);

        1 Reply Last reply Reply Quote 3
        • First post
          Last post
        Copyright © 2014 NodeBB Forums | Contributors