English 中文(简体)
关于上Case特征的Javascript Spliting
原标题:Javascript Split string on UpperCase Characters
  • 时间:2011-10-25 10:58:45
  •  标签:
  • javascript

How do you split a string 页: 1 an array in JavaScript by Uppercase character?

因此,我希望分裂:

 ThisIsTheStringToSplit 

页: 1

[ This ,  Is ,  The ,  String ,  To ,  Split ]
最佳回答

我愿以<条码>。

 ThisIsTheStringToSplit .match(/[A-Z][a-z]+/g);

它将采取类似行动:

[ This ,  Is ,  The ,  String ,  To ,  Split ]

<>strong>edit: since string.split(<>/code>].

 ThisIsTheStringToSplit .split(/(?=[A-Z])/); // positive lookahead to keep the capital letters

这还将从评论中解决这一问题:

"thisIsATrickyOne".split(/(?=[A-Z])/);
问题回答
.match(/[A-Z][a-z]+|[0-9]+/g).join(" ")

这还应处理数字问题,如果把所有阵列项目加起来的话,最终将结果归为一句。

 ThisIsTheStringToSplit .match(/[A-Z][a-z]+|[0-9]+/g).join(" ")

产出

"This Is The String To Split"

阁下:

var arr = UpperCaseArray("ThisIsTheStringToSplit");

function UpperCaseArray(input) {
    var result = input.replace(/([A-Z]+)/g, ",$1").replace(/^,/, "");
    return result.split(",");
}

这是我迅速、跨波束式、不依赖的解决方案,可以不依赖任何语文书写。

var s1 = "ThisЭтотΨόυτÜimunəՕրինակPříkladדוגמאΠαράδειγμαÉlda";
s2 = s1.toLowerCase();
result="";
for(i=0; i<s1.length; i++)
{
 if(s1[i]!==s2[i]) result = result +    +s1[i];
 else result = result + s2[i];
}
result.split(   );

Here s an answer that handles numbers, fully lowercase parts, and multiple uppercase letters after eachother as well:

const wordRegex = /[A-Z]?[a-z]+|[0-9]+|[A-Z]+(?![a-z])/g;
const string =  thisIsTHEString1234toSplit ;
const result = string.match(wordRegex);

console.log(result)

该法典将归还以下产出:

const str =  ThisIsTheStringToSplit ;
str.split(/(?=[A-Z])/);

// It will print this output        
[ This ,  Is ,  The ,  String ,  To ,  Split ]

I m a newbie in programming and this was my way to solve it, using just basics of JavaScript declaring variables as clean for someone reading as possible, please don t kill me if it is not optimized at all, just starting with coding hehe :)

  function solution(string) {

     let newStr =   ;

     for( i = 0; i < string.length ; i++ ) {
       const strOriginal = string[i];
       const strUpperCase = string[i].toUpperCase();

       if( strOriginal === strUpperCase) {
         newStr = newStr +     + strOriginal;
       } else {
         newStr = newStr + strOriginal;
       }

     }

     return console.log(newStr);

   }


   solution( camelCasing );
string DemoStirng = "ThisIsTheStringToSplit";
            for (int i = 0; i < DemoStirng.Length; i++) {
                if (i != 0)
                {
                    if ((int)DemoStirng[i] <= 90 && (int)DemoStirng[i] >= 65)
                    {
                        var aStringBuilder = new StringBuilder(DemoStirng);
                        aStringBuilder.Insert(i, ",");
                        DemoStirng = aStringBuilder.ToString();
                        i++;
                    }
                }
            }
            string[] words = DemoStirng.Split( , );




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.