We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a073ad commit 6e072c4Copy full SHA for 6e072c4
1 file changed
README.md
@@ -10,17 +10,17 @@ If you like or are using this project please give it a star. Thanks!
10
# Why SimpleStateMachine?
11
**Forget** about regular expressions and **enjoy searching**
12
13
-1. Describe search pattern:
+1. Describe search pattern🔎
14
```C#
15
// Just text and placeholders
16
var template = StructuralSearch.ParseFindTemplate("void $methodName$($params$)")
17
```
18
-2. Find it in any text:
+2. Find it in any text📄
19
20
// All the matches are already here
21
var results = template.ParseString("void MyMethodName(int value1, double value2)"
22
23
-3. Enjoy the search results
+3. Enjoy the search results📋
24
25
// The found text part
26
parseResult.Match.Value // void MyMethodName(int value1, double value2)
0 commit comments