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.
次の文字列を取得するための正規表現を考え出そうとしています:1:38Pそしてそれを日付で解析するための有効な形式に変換します。する必要がある
var d = "1:38P"; var pat = /^(\d+:\d+)(A|P)$/; var m = pat.exec(d); if (m) { console.log('We have our winner' + 0 + m[1]}