I want to select all objects that have the word some in its value. The key is roof:material. I tried "roof:material"=some* and checked the regexp box. It does not find match. The existing values are some parts CGI, some RCC, some RCC some tiles etc. asked 25 Aug '13, 10:07 amritkarma |
The search function key:valuefragment is what you are looking for (described in the find window). No RegExp needed. Your key contains the ":" which is a problem here as JOSM uses it as a special character in the search syntax.
answered 25 Aug '13, 11:53 aseerel4c26 ♦ 2
Also note, if you do need to use a regexp, that the syntax is different and "some*" does not match what you think, but "som", "some", "somee", "someee", etc. See https://en.wikipedia.org/wiki/Regular_expression Regexps are more powerful but alo more complicated.
(26 Aug '13, 00:32)
Vincent de P... ♦
|