473,395 Members | 1,581 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Converting string to Array

Hi all,

If I have a string where I know the length how do I split that into an
array based on Char position.

For example, split a string with a length of 100 into a 5 element
Array, each of 20 chars length.

Thanks in advance.
Adam
Jul 20 '05 #1
2 16155
Lee
Adam said:

Hi all,

If I have a string where I know the length how do I split that into an
array based on Char position.

For example, split a string with a length of 100 into a 5 element
Array, each of 20 chars length.


If you know that the string is an exact multiple of 20 characters,
you can use:

var myArray=str.match(/.{20}/g);

If the last block might have fewer, but you want all of the
others to contain 20 characters, you would use:

var myArray=str.match(/.{1,20}/g);

If neither of these will work for you, give more detail about
what you need.

Jul 20 '05 #2
Lee <RE**************@cox.net> wrote in message news:<bq*********@drn.newsguy.com>...
Adam said:

Hi all,

If I have a string where I know the length how do I split that into an
array based on Char position.

For example, split a string with a length of 100 into a 5 element
Array, each of 20 chars length.


If you know that the string is an exact multiple of 20 characters,
you can use:

var myArray=str.match(/.{20}/g);

If the last block might have fewer, but you want all of the
others to contain 20 characters, you would use:

var myArray=str.match(/.{1,20}/g);

If neither of these will work for you, give more detail about
what you need.


Thanks for the Response Lee .
After a bit more investigation I realised what I was hoping for
wouldnt work for me anyway.

I have a <textarea> rows=5 cols=50.
I want to create an array with each element of the array to contain
the contents of each row from the <textarea>. I was expected to grab
the .innerText of the object and create a maximum of 5 strings each
with a length of 50.
But I realised that just because there is 50 cols in a row, there may
be more than 50 characters in that row.

Does anyone know how to create a an array of strings that contain the
contents of each row in a <textarea> object.

Thanks.
Adam
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: matt melton | last post by:
Hi there, I am trying to write a method that accepts an array of any primitive type and will return the same array without copying memory as an array of bytes. ie. I'd like to be able to do...
4
by: x | last post by:
converting 1944 to '1','9','4','4' how can I convert a number such as 1944 to a character array? thanks!
2
by: Asbjørn Ulsberg | last post by:
Hi. I'm trying to convert Brady Hegberg's great RTF2HTML VB 6.0 module to C#. I've managed to convert the VB code to VB.NET, which gave me the following code: Option Strict On Option...
4
by: Prabhu | last post by:
Hi, We are having problem in converting a byte array to string, The byte array has char(174), char(175), char(240), char(242) and char(247) as delimiters for the message. when we use...
8
by: iyuen | last post by:
I'm having problems with converting a byte array to an image object~ My byte array is an picture in VB6 StdPicture format. I've used propertybag to convert the picture into base64Array format in...
4
by: sal | last post by:
Greets, All Converting array formula to work with datatables/dataset tia sal I finally completed a formula I was working on, see working code below. I would like to change this code so it...
8
by: moondaddy | last post by:
I need to convert a byte array to a string and pass it as a parameter in a URL and then convert it back to the original byte array. However, its getting scrambled in the conversion. In short,...
2
by: XML newbie: Urgent pls help! | last post by:
Does anyone have a snippet of code that will convert a string to a long array? I've nearly smashed my head against the wall trying to figure this out. I'm Using vb.net 2005 Pls reply asap. I...
4
by: gg9h0st | last post by:
i'm a newbie studying php. i was into array part on tutorial and it says i'll get an array having keys that from member variable's name by converting an object to array. i guessed "i can...
2
by: Brian Parker | last post by:
I am beginning to work with VB2005.NET and I'm getting some problems with string formatting converting an application from VB6. VB6 code:- sTradeDate = Format(pArray(4,i Record), "mmddyy") ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.