working on it ...
Explore Public Snippets
Found 3 snippets
Find: \s+$ Replace with: '' (not even quotes, means empty ) Press "Replace all" button
public by viveklucky1848 2447 2 6 0
Life-saver regex to remove desired html tags completely with their contents
Remove html tags with their contents, useful when you want to remove certain frequently occurring tags from page, for designer to set design with css. (eg. label tag)
Find: <label.*?>(.|\s)*?</label> Replace with: ''(nothing :) not even quotes) Dare to try below example with my devilish remover;) <label class="email" for="email"> <span>New Email</span> <p>New email 2</p> NEW EMAIL3 </label>
public by viveklucky1848 1972 0 6 1
Replace multiple whitespaces with single character linewise
Replace multiple whitespaces with single character(eg. |) in each line:
Find: [ \t]+ or [ \t]{2,} Replace with: |