Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8529469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:02:33+00:00 2026-06-11T09:02:33+00:00

I want to split a string value according to <br/> An example string: *

  • 0

I want to split a string value according to <br/>

An example string:

""* Minimum 3 digits allowed<br/>" * Maximum 9 digits & 2 precisions allowed<br/>"

in the above case there will be two values in array

1. * Minimum 3 digits allowed
2. * Maximum 9 digits & 2 precisions allowed

And need to find the length of the string from the array (which is already splitted) which have the maximum length within the array.

So that answer will be 40

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T09:02:34+00:00Added an answer on June 11, 2026 at 9:02 am
    var str = '* Minimum 3 digits allowed<br/>* Maximum 9 digits & 2 precisions allowed<br/>';
    
    var spltArr = str.split("<br/>");
    var longStr = null;
    var maxLen = -1;
    for(var i = 0; i < spltArr.length; i++ ){
        if( longStr === null ){
            longStr =  spltArr[i];
            maxLen =  spltArr[i].length;  
        }
        if( spltArr[i].length > maxLen ){
            longStr =  spltArr[i];
            maxLen =  spltArr[i].length;
        }
    }
    console.log("Max len: ", maxLen, "String:", longStr);
    

    Fiddle

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use regex to split some string like this @key='value' to key
I want to split a string with all non-alphabetic characters as delimiters. For example,
I have a string that's like this: 1|value|; I want to split that string
How to split the String value I want to get the id.... Table1 ID
i basically just want to pick a random value in a string split by
I want to split my int value into digits. eg if the no. is
I want to split string by setting all non-alphabet as separator. String[] word_list =
I want to split a string in Javascript using split function into 2 parts.
I want to split a string like this: abc//def//ghi into a part before and
I want to split a string like 001A into 001 and A

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.