最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to parse feet-inch string in javascript? - Stack Overflow

programmeradmin2浏览0评论

I am stuck. This one is easy. But, it has bee a nightmare to me.

I am not able to parse this string and store into two variable named feet and inch.

  var f = "5'9''"; // 5 feet 9 inch 

  var nn = f.indexOf("\'");
  var feet = f.substring(0, nn);

  var inch = f.substring(nn + 1, f.lastIndexOf("\'\'")-1); 

The output of inch should be 9 but is nil.

I am stuck. This one is easy. But, it has bee a nightmare to me.

I am not able to parse this string and store into two variable named feet and inch.

  var f = "5'9''"; // 5 feet 9 inch 

  var nn = f.indexOf("\'");
  var feet = f.substring(0, nn);

  var inch = f.substring(nn + 1, f.lastIndexOf("\'\'")-1); 

The output of inch should be 9 but is nil.

Share Improve this question edited Mar 8, 2013 at 11:36 Regexident 29.6k10 gold badges95 silver badges100 bronze badges asked Mar 8, 2013 at 11:16 BatakjBatakj 12.8k17 gold badges67 silver badges114 bronze badges 2
  • @Regexident will it be 9 instead of 5 in last line. – Adeel Commented Mar 8, 2013 at 11:34
  • @Adeel: Uh, correct. Typo. Fixed it, my bad. – Regexident Commented Mar 8, 2013 at 11:37
Add a ment  | 

5 Answers 5

Reset to default 11

You can use a regular expression:

var f = "5'9''";
var rex = /^(\d+)'(\d+)''$/;
var match = rex.exec(f);
var feet, inch;
if (match) {
    feet = parseInt(match[1], 10);
    inch = parseInt(match[2], 10);
}

Live Example | Source

If you change the regex to

var rex = /^(\d+)'(\d+)(?:''|")$/;

...then it'll allow you to use either '' or the more mon " after the inches value.

Live Example | Source

var f = "5'9''";
var a = f.split("'");
var feet = a[0];
var inch = a[1];

Regular expressions will do the trick:

var f = "5'9''";
var match = f.match(/^(\d+)'(\d+)''$/);
var feet = +match[1],
    inch = +match[2];

Just remove -1 from

  var inch = f.substring(nn + 1, f.lastIndexOf("\'\'")-1); 

As substring method takes start index and end index. It should be :

 var inch = f.substring(nn + 1, f.lastIndexOf("\'\'")); 

The problem with the selected answer above is it doesn't match if there are no inches supplied. Here is a solution that handles both feet/inches or just feet.

  display( parse("5'9\"") );  
  display( parse("6'") );

  function parse(feetAndInches){
    var fAndI = feetAndInches.split("'");
    var feet = fAndI[0];
    var inches = fAndI[1] || "0";
    inches = inches.replace('"', '');
    var msg = feet+" feet, " + inches+ " inches";
    return msg;
  }

  function display(msg) {
    var p = document.createElement('p');
    p.innerHTML = String(msg);
    document.body.appendChild(p);
  }

Try it here: https://jsfiddle/dqeeysf6/3/

发布评论

评论列表(0)

  1. 暂无评论