2
間のすべての文字列を取得します
私は、次の文字列を持っている:私はすべての単語を取得しようとしている2つの文字
"The length must be between <xmin> and <xmax> characters"
/文字列私は、次の取得<>
間しかし、私のコードである:
xmin> and <xmax
を
これは私のコードです:
var srctext = "The length must be between <xmin> and <xmax> characters";
var re = srctext.match(/\<(.*)\>/).pop();
console.log(re);
xmin
とxmax
の両方を取得するにはどうすればよいですか?
ああ待ちます。あなたが正しいです。 –