Welcome to yEd Q&A!
Here you can ask questions and receive answers from other members of the community and yEd developers. And you can tell us your most wanted feature requests.

Categories

Regex syntax does not match java website

0 votes

I am trying to use the find function built into yed to quickly search through my nodes using the find feature (or any other means). 

ie to locate the node with label "to do this complement all remaining bits"
using the query keywords "complement bits"

the find functions "Match Text" options haven't worked for me, so I thought the regex option would suit best.

I use https://regex101.com/ to help me build regex searches, using the java 8 flavor.

and this java api for regex

the regex101 website is able to find the text, while yed isn't.

are the syntaxs different? if so is there a reference I can use to build queries

in Help by

1 Answer

0 votes

yEd uses Java's Pattern class for regular expression matches as well, so you are using the correct reference/documentation.

What regular expression did you use for your keywords "complement" and "bits"? E.g. (?:.*complement.*bits.*|.*bits.*complement.*) should work for this case.

by [yWorks] (160k points)
Legal Disclosure | Privacy Policy
...