Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javascriptを使用して次のURLを取得する方法-idの値?
URL: http://www.url/id/2721/John
次の値を取得します。
2721 and John
.split("/")URL を分割して値を読み取るために使用します。
.split("/")
使用.match(re):
.match(re)
var r = "http://www.url/id/2721/John".match('\/id\/(\\d+)/([^/]+)');
値v[1]は と2721にr[2]なりますJohn。
v[1]
2721
r[2]
John