1
2 import re
3
4txt = "The rain in Spain"
5x = re.search("\s",
6 txt)
7
8
9print("The first white-space character is located in
10 position:", x.start())
1filetype: allows searching for specific filetype
2-<word>: excludes a word from results(type without <>)
3before:yyyy-mm-dd : only shows results from before a date
4after:yyyy-mm-dd : only shows results from after a date
5intitle:<word> : searches for a word or phrase in the title of a site(type without <>)
1 intext: or allintext:
2 allows you to only search in the text of a site,
3 as opposed to the title and URL,
4 which the search algorithm usually takes into consideration.
1IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
2
3Importing the numpy c-extensions failed. This error can happen for
4different reasons, often due to issues with your setup.
5
1The view account.views.registerUser didn't return an HttpResponse object. It returned None instead.
1/* File name : RunEncap.java */
2public class RunEncap {
3
4 public static void main(String args[]) {
5 EncapTest encap = new EncapTest();
6 encap.setName("James");
7 encap.setAge(20);
8 encap.setIdNum("12343ms");
9
10 System.out.print("Name : " + encap.getName() + " Age : " + encap.getAge());
11 }
12}
1 “before:YYYY-MM-DD” and “after:YYYY-MM-DD”
2 articles about Google changes this year, "mashable google after:2019-01-01"