Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. То что прописываю в консоли
  2. let a = "# I open music.yandex.ru\r\n# I click the play button\r\n# I wait until ads pop-up is opened\r\n# I close ads pop-up\r\n# I look at the header\r\n\r\nExpected Result:\r\n{code:java}\r\nТРЕК\r\nYesterday Remastered 2009\r\nИсполнитель: The Beatles{code}"
  3. let b = a.replace(/ (Expected).* */g, "")
  4. console.log(b);
  5.  
  6.  
  7. То что выдаёт
  8. # I open music.yandex.ru
  9. # I click the play button
  10. # I wait until ads pop-up is opened
  11. # I close ads pop-up
  12. # I look at the header
  13.  
  14. Expected Result:
  15. {code:java}
  16. ТРЕК
  17. Yesterday Remastered 2009
  18. Исполнитель: The Beatles{code}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement