Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to set some span to the first character in for example this string:
$12.34.
This price is created dynamically and instead of dollar can be any other values. So I need regexp to get first character. I have some example of setting span to all elements after "."(dot).

var elem = document.getElementById('somediv');
elem.innerHTML = elem.innerHTML.replace( /(\d+).(\d+)/g, '$1.<'span class="decimalPart">$2<'/span>' );

Also, where can I find these expressions, like (/d+) gets all digits, and so on?

Thank you ;)

share|improve this question
here's a link with a list of "special characters" in javascript regexs: developer.mozilla.org/en-US/docs/JavaScript/Guide/… – David Lam Feb 27 at 8:19

1 Answer

You don't need regex to get the first character of a string, you can just use substring.

var firstChar = elem.innerHTML.substring(0,1);
share|improve this answer
You don't even need substring if that's the case: elem.innerHTML[0] – elclanrs Feb 27 at 8:26
I need something like: elem.innerHTML = elem.innerHTML.replace(charAt(0),'<span class="test">$1</span>' ); If this even makes sense.. – Arturs Nikitins Feb 27 at 10:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.