包详细信息

extract-html-id

s3ththompson29MIT1.0.0

Extract all ids from html

html, id, extract, regex

自述文件

extract-html-id stability

npm version build status downloads js-standard-style

Extract all ids from html

Usage

var extract = require('extract-html-id')
var assert = require('assert')

var html = `
  <div id="foo">
    <p id="bar">hello planet</p>
  </div>
`
var expected = [ 'foo', 'bar']
assert.deepEqual(extract(html), expected, 'array was same')

API

ids = extract(html)

Get an array of ids for the given string. Uses a regex so safe to run on non-html strings too. Returns the first ID per DOM element. Returns an empty array if no matches are found.

License

MIT