Skip to content

Commit 6e072c4

Browse files
Update README.md
1 parent 1a073ad commit 6e072c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ If you like or are using this project please give it a star. Thanks!
1010
# Why SimpleStateMachine?
1111
**Forget** about regular expressions and **enjoy searching**
1212

13-
1. Describe search pattern:
13+
1. Describe search pattern🔎
1414
```C#
1515
// Just text and placeholders
1616
var template = StructuralSearch.ParseFindTemplate("void $methodName$($params$)")
1717
```
18-
2. Find it in any text:
18+
2. Find it in any text📄
1919
```C#
2020
// All the matches are already here
2121
var results = template.ParseString("void MyMethodName(int value1, double value2)"
2222
```
23-
3. Enjoy the search results
23+
3. Enjoy the search results📋
2424
```C#
2525
// The found text part
2626
parseResult.Match.Value // void MyMethodName(int value1, double value2)

0 commit comments

Comments
 (0)