[Solved] How can I get the string between two tags [closed]

use this pattern: @”\[video.*?\](.*?)\[/video\]” and then get group 1. I won’t post the whole code because I dont want to do your work for you. Read about C# Regexes, Patterns and try to write your code with this pattern. 1 solved How can I get the string between two tags [closed]

[Solved] How can I remove dollar signs ‘$’ from a list in Python?

Strip from the left with str.lstrip(): >>> sales = [‘$1.21’, ‘$2.29’, ‘$14.52’, ‘$6.13’, ‘$24.36’, ‘$33.85’, ‘$1.92’] >>> [s.lstrip(“$”) for s in sales] [‘1.21’, ‘2.29’, ‘14.52’, ‘6.13’, ‘24.36’, ‘33.85’, ‘1.92’] 1 solved How can I remove dollar signs ‘$’ from a list in Python?