Skip to content

Instantly share code, notes, and snippets.

@kuwalab
Created March 5, 2014 20:41
Show Gist options
  • Save kuwalab/9376145 to your computer and use it in GitHub Desktop.
Save kuwalab/9376145 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ほげ</title>
</head>
<body>
/sに全角のスペースを含む? <span id="test"></span>
<script>
var $test = document.getElementById('test');
$test.innerHTML = /\s/.test(' ') + "";
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment