Split Or Regex Difference Between FF And IE

Jul 23, 2005

I don't know where the actual issue is, but hopefully someone can explain.

The following displays "5" in FireFox, but "3" in IE:

<script type="text/javascript" language="javascript">
var newString = ",a,b,c,";
var treeArray = newString.split(/,/i);
alert(treeArray.length);

</script>

View 1 Replies


ADVERTISEMENT

String Split With Regex

Sep 28, 2005

I have a string I have to parse

AB1.2CD34

I need to split the string into groups of letters and numbers..

"AB" "1.2" "CD" "34"

What is the best way of doing this ?

I've looked at string.split using a regex, but that doesn't output the
delimiters.

View 3 Replies View Related

Split Not Recognizing Return From Regex As String?

Sep 18, 2011

I'm working on a function that checks the css href in an included html file and if it is incorrect it adjusts it. my problem is in this piece of code

Code:
hrefrege = /href="[^ ]+"/i;
originalHref = m[0].match(hrefrege);
originalHrefArray = originalHref.split("/");

[Code]....

Why doesn't it recognise it and how do i fix my problem?

View 2 Replies View Related

JQuery :: Calendar To Get Difference Between Two Dates And Split Up Variables

Oct 5, 2011

I'm working on redesign of a vacation rental company web site, and I'm looking to use a drop down calendar to select the arrival/departure date on the search form. getting the number of nights difference between dates (though I think the code/labels are slightly backward in that example), but I don't know where to start to split off the variables I need. Basically, the search.php file I'm passing the variables to need to be in this format:

Code:
search.php?month=(arrival month digit)&day=(arrival day digit)&year=(arrival year, 4 digits)&days_count=(number of nights)(...plus some other variables...)

how to split things off properly and get a properly formatted URL? I'll experiment a bit, and come back here with sample code

View 1 Replies View Related

How To Split An Array?

Aug 10, 2005

i have a function (below) which reads the last n lines from a text
file. rather than read the whole line and output it as is, i want to be
able to read the line and split the tab delimited text file so I can
present it in columns, exclude unwanted data etc....

View 5 Replies View Related

Split() Function

Dec 14, 2007

if you should be able to use the split() function inside user created functions eg:

function testSplit(toBeSplit){
var tempSplit = toBeSplit.split("");
for(a=0;a<tempSplit.length;a++){
document.write(tempSPlit[a]+"<br />");
}}

testSplit("string to be split");

as the function doesnt work for me and i get a message from firebug saying toBeSplit.split is not a function yet if i split the string outside the function it works fine??

View 8 Replies View Related

SPLIT FUNCTION

Oct 29, 2005

I know the split() function, but I don't know its limits!

How I do to split a sentence only when the the lower letters
comes before the full points? For Example:

split('a.');
split('e.');
split('i.');
split('o.');
split('u.');

Can I write this in another way?

View 5 Replies View Related

Split Text

Oct 28, 2005

Let say I have some text like

1234|||abcd

Now I would like 1234 to go to one variable and abcd to another.

View 6 Replies View Related

Split/url Values

Sep 20, 2001

on my first page I select one or multiple serial numbers that are submitted to the main page. on the main page it loops through the comma delimited list of serial numbers and displays them seperately with radio buttons associated to each serial number. when someone selects the radio button it will open a popup window and pass that particular serial number. I have tried to split out the individual serial numbers using the split command which I thought would then put the values into an array. I figured then I could select out each array value depending on which radio button I selected. for some reason it is not working. Inspecing the following code, can someone help me!!??

var objSourceForm = document.forms['demate'];
var sOldserials = objSourceForm.elements['maj_asm_serial_nbr'].value;
var serials =sOldserials.split(',');
var sString = ''

for (i=0; i< serials.length; i++) {

sString = serials[i];
}

var winOptions = window.open("red_reason_popup_demate.cfm?comp_condition="+lc+"&serial_nbr="+sS tring+"&maj_asm_name="+document.demate.maj_asm_name.value,"remotewin","width=3 25,height=225,chrome=yes, scrollbars=yes");

I thought that the for loop will loop

for (i=0; i<serials.length; i++) {
sString = serials[i];
alert (serials[i])
}
through two times and each time the serials[i] would be either serials[0] or serials[1]. I figure I need something else inside the for loop to relate the i to the loopcounter of the main page?

I am attatching a gif screen shot to show you what i am displaying. each serial number has a radio button with a RED label. When you select that radio button, the associated serial number needs to be passed in the url as the popup window opens. I am already passing two other values in the url.

sString = serials[i]; this is the line in my code that is not doing what I expected it to do.

View 2 Replies View Related

Split Space From Url Value?

Jul 13, 2011

I am trying to split a url string for example the url ishttp://www.xx.com/museum designand the string is museum designIn firefox/ie/chrome it returns as museum%20designbut in safari it returns as museum design

Code:
lastpart=lastpart.split("%20"); // works in firefox/IE/Chrome
lastpart=lastpart.split(" "); // works in safari

View 2 Replies View Related

Cookies, Javascript And Split

Jul 23, 2005

Data I'm saving to a Cookie looks like this: "A,B,C^1,2,3" I need
everything to the left of the "^" to go in one input box, and
everything to the right in another input box when I load the Cookies
into my page. Any suggestions using Javascript? I think I can use
"split" somehow, but not sure exactly how to proceed.

View 1 Replies View Related

JQuery :: Split A Table Into Four?

Jan 23, 2011

I want to split a table into four tables without collapsing the style. The row and column I split the table from is parameters as follows [code]...

View 8 Replies View Related

JQuery :: How To Split The Responsetext

Mar 17, 2011

I use this on a select box:

<script type="text/javascript">
$(document).ready(function(){
$("#states").change(onSelectChange);

[code]....

View 8 Replies View Related

Split And Ignore Certain Delimiters

Jan 10, 2010

is there any smart way to do split, and ignore certain delimiters, like:

var s = "don't use ',' as part of data, some other text";
arr = s.split(",");
// obviously don't want s to be splitted at ','

View 2 Replies View Related

Split A String To An Array?

Apr 26, 2011

I have code...

how can I convert these to an array so I can loop through the values?

View 2 Replies View Related

Split - Put Elements Into An Array

Oct 4, 2010

I have this simple code to put elements into an array

[Code]....

View 3 Replies View Related

[split] Drop Down Menu?

Oct 24, 2011

I am having trouble with some coding. I have created a drop down list with the months of the year. Next to this I have created a button.What I want to do is when the user selects a month from the drop down menu, and then selects "Click Me", it takes the user to that particular month.

View 9 Replies View Related

Split Numbers From String?

Nov 25, 2009

I have this string: field = "due_date31"; is there a way to split it into two vars so it will be like:

var 1 = "due_date";
var 2 = "31";

View 3 Replies View Related

Split String And Sum Values?

Jun 27, 2010

I have this function: when a user fill a field with this "c 10 20 30" i need to sum just the numbers and show the result.I have this but is NOT working...

Code JavaScript:

function escaja(str, prefix) {
if (str.indexOf(prefix)===0){
var sumar = str.split(" ");

[code]....

View 1 Replies View Related

Split The Elements Inside Each Other?

Dec 4, 2011

I was wondering how to split the elements inside each other, so that each of them has its own background color. What I'm trying to do is to highlight background of each element onmouseover. Up till now I haven't managed to do it properly - for example, I have a table cell with a hyperlink inside it. When I point to the cell - background changes, however, pointing to the hyperlink leaves the cell coloured - which is what I don't want. I'm trying to use this code:

HTML Code:

onMouseOver="this.style.backgroundColor='yellow';" onMouseOut="this.style.backgroundColor='white';"

View 8 Replies View Related

Need Help With Split And Math Functions

Nov 7, 2006

Code:
function finalSize(){
var size = document.getElementById('size').value;
var margin = document.getElementById('margins').value;
var mirrors = document.getElemntById('mirrorsRadio').value;

var size_array = size.split('x');
var h = size_array[0];
var w = size_array[1];

var finalH = ''
var finalW = ''

if(margin > 1){
finalH = h * margin;
finalW = w * margin;
document.getElementById('finalSize').value = finalH+'x'+finalW;
}else{
newH = h * margin;
newF = w * margin;
finalH = newH + h;
finalW = newW + w;
document.getElementById('finalSize').value = finalH+'x'+finalW;
}

}
I see it's ok, but it gives me this error:

Object doesn't support this property or method.

I don't know what I'm doing wrong. All I know is PHP, but from what little I learned on Javascript, my brain is telling me I'm right, but my experience is telling me I'm wrong. XD

View 1 Replies View Related

Split With Multiple Delimiters?

Dec 4, 2011

How do i split with multiple delimiters( i think )? im trying to split my split with multiple delimiters different values but i cant find a good way to do so.

does anyone know how to fix this? code...

View 8 Replies View Related

Group And Split A Pattern?

Mar 30, 2009

I'm currently doing a javascript course and am working on my coursework, I've come across a roadblock.

Part of the task is to create a pattern match to recognize valid postcodes.[code]...

At a minimum, I'd like to know the official term for what I'm trying to do is called, then I can at least do some reasearch on my own.

While I'm here, how's my coding so far? Anything that screams "bad practice"? or "I could do better"?

View 7 Replies View Related

JQuery :: Split A Variable ?

Sep 8, 2010

I have a variable time whose value is:

time = 2010-09-17 20:00:00

I want to split this value using jQuery or java script.

After splitting
year=2010
month=09
date=17
hr=20
min=00
sec=00

View 1 Replies View Related

Error Split Is Not A Function

Feb 19, 2010

I have a string that is a latitude and longitude pair separated by a comma. I'm trying to separate the 2 parts of the string into separate variables, but for whatever reason, the "split()" function won't work in my code. Everywhere I've looked online says to use "split()" and my syntax seems correct,[code]When I try to run the page, I get this error in firefox:Error: latlong.split is not a function.

View 2 Replies View Related

Split() One Document.frames Not Allowed

Jul 23, 2005

I want to split the result from window.frames['data_frame'].document.location;, this in order to find out which page is currently opened in the specific frame. When I do it like this:


var source = window.frames['data_frame'].document.location;
// var source = "W3Schools is great!";
index_source = source.split('/');


IE gives an error that this method or property is not supported by this object. When I check it on the other var it is accepted. Is there anyway I can make this work? I already tried to do it with
document.getElementById().src etc.. but that is not very reliable.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved