Jump to content

parse string to get embedded numbers


Jim from Oakland

Recommended Posts

Based on content of a variable holding
the id/name of a specific html input field
like this:

sInputName = 'item11_element23_value';

I need to extract the item number and element
number from that name (11 and 23 respectively,
in the example.) 

//for the example would return 11
iItemIndex = extractItemIndex();

//for the example would return 23
iElementIndex = extractElementIndex();

There may be as many as three 
digits for either criterion.

Thanks soo much!
Link to comment
Share on other sites

[code]
<script type="text/javascript" language="javascript">

var sInputName = 'item11_element23_value';

function extract (what, from) {
var regex = new RegExp(what + '([0-9]+)');
var result = regex.exec(from);
return result ? result[1] : null ;
}
//for the example would return 11
iItemIndex = extract('item', sInputName);
//for the example would return 23
iElementIndex = extract('element', sInputName);

alert(iItemIndex + '/' + iElementIndex);

</script>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.