We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is just a general question...
How do we search for the below string; including the pipe characters? I couldn't find any information about escaping special characters.
|USA| |MOVIES | Or, what if I want to search for both?
|USA|
|MOVIES |
When I try something like below... Filter = "\|USA\| .* HD|\|USA\| .* UHD|\|US\| .* HD|\|US\| .* UHD|\|UK\| .* HD|\|UK\| .* UHD"
Filter = "\|USA\| .* HD|\|USA\| .* UHD|\|US\| .* HD|\|US\| .* UHD|\|UK\| .* HD|\|UK\| .* UHD"
I get the error:
invalid escape sequence: \|"
The text was updated successfully, but these errors were encountered:
I know you posted this LONG ago, but I bumped into it today, you have to double escape
\\|USA i.e.
\\|USA
Decided to post just in case others bump into this too.
Sorry, something went wrong.
No branches or pull requests
This is just a general question...
How do we search for the below string; including the pipe characters? I couldn't find any information about escaping special characters.
|USA|
|MOVIES |
Or, what if I want to search for both?
When I try something like below...
Filter = "\|USA\| .* HD|\|USA\| .* UHD|\|US\| .* HD|\|US\| .* UHD|\|UK\| .* HD|\|UK\| .* UHD"
I get the error:
invalid escape sequence: \|"
The text was updated successfully, but these errors were encountered: