Guest User

Untitled

a guest
Jun 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <div id="app">
  2. <div>
  3. <h1> Tool: Find and Replace Text</h1>
  4. <div style="padding-top:8px;">
  5. <textarea v-model="find_this" style="width:100%;" rows="4" wrap="off"></textarea>
  6. </div>
  7. </div>
  8. <div style="padding-top:4px;">Replace with:</div>
  9. <div style="padding-top:4px;">
  10. <textarea v-model="replace_with" style="width:100%;" rows="4" wrap="off"></textarea>
  11. </div>
  12. <div style="padding:7px 0px 7px 0px;">
  13. <button @click="replacetext">Find and Replace Text</button>
  14. <input title="Case Sensitive" type="checkbox" v-model="globl">Global matching.
  15. <input title="Case Sensitive" type="checkbox" v-model="case_sen">Case sensitive.
  16. <span id="found">
  17. {{found}}
  18. </span>
  19. </div>
  20. <textarea v-model="input_output" style="width:100%;" rows="4" wrap="off"></textarea>
  21.  
  22. </div>
  23.  
  24. </div>
Add Comment
Please, Sign In to add comment