Spaces:
Running
Running
Add a regex example
Browse files
app.py
CHANGED
@@ -17,7 +17,9 @@ def main():
|
|
17 |
gr.Markdown(DESCRIPTION)
|
18 |
search_box = gr.Textbox(
|
19 |
label='Keywords',
|
20 |
-
placeholder=
|
|
|
|
|
21 |
case_sensitive = gr.Checkbox(label='Case Sensitive')
|
22 |
search_button = gr.Button('Search')
|
23 |
names_with_link = gr.CheckboxGroup(choices=[
|
|
|
17 |
gr.Markdown(DESCRIPTION)
|
18 |
search_box = gr.Textbox(
|
19 |
label='Keywords',
|
20 |
+
placeholder=
|
21 |
+
'You can search for titles with regular expressions. e.g. (?<!sur)face'
|
22 |
+
)
|
23 |
case_sensitive = gr.Checkbox(label='Case Sensitive')
|
24 |
search_button = gr.Button('Search')
|
25 |
names_with_link = gr.CheckboxGroup(choices=[
|