{"id":2997,"date":"2017-11-22T11:24:00","date_gmt":"2017-11-22T11:24:00","guid":{"rendered":"https:\/\/www.threesl.com\/blog\/?p=2997"},"modified":"2022-08-23T15:38:19","modified_gmt":"2022-08-23T14:38:19","slug":"can-i-check-frames-that-dont-contain-digits","status":"publish","type":"post","link":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/","title":{"rendered":"Can I check for frames that don&#8217;t contain digits?"},"content":{"rendered":"<h2>Regex &#8211; Regular Expression<\/h2>\n<p>A RegEx <a href=\"https:\/\/en.wikipedia.org\/wiki\/Regular_expression\">(<strong>Reg<\/strong>ular <strong>Ex<\/strong>pression)<\/a> is a pattern matching method often used in text searches and data processing. <em>Cradle<\/em> supports <em>Regex <\/em>matches in a number of query elements, so it is possible to perform complex searches on your data. This article gives an example of the use of <em>Regexes<\/em> in <em>frames<\/em>.<\/p>\n<h4>Example:<\/h4>\n<p>The mocked up example describes just one of the ways a user could search the text frames of their items achieve particular results.<\/p>\n<table class=\"Table_Cell\" cellspacing=\"0\" cellpadding=\"2\">\n<tbody>\n<tr class=\"Table_Header\">\n<th class=\"Table_Header\" style=\"text-align: left;\" width=\"53\">Identity<\/th>\n<th class=\"Table_Header\" style=\"text-align: left;\" width=\"133\">Name<\/th>\n<th class=\"Table_Header\" style=\"text-align: left;\" width=\"106\">Group<\/th>\n<th class=\"Table_Header\" style=\"text-align: left;\" width=\"186\">Text<\/th>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">bed1<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Single Bedroom<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\">Customer rooms<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\">Single person room of basic standard &#8211; en-suite shower<\/td>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">bed2<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Double Bedroom<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\">Customer rooms<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\">A 2 person occupancy room, shared bed en-suite shower<\/td>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">bed3<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Twin Bedroom<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\">Customer rooms<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\">A 2 person occupancy room, single beds, en-suite shower<\/td>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">bed4<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Luxury Bedroom<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\">Customer rooms<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\">A 1 or 2 person occupancy room double bed, en-suite with bath and shower.<\/td>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">bed5<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Night Staff Rest<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\">Staff rooms<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\">1 person<\/td>\n<\/tr>\n<tr class=\"Table_Cell\">\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"53\">store1<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"133\">Cleaning storeroom<\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"106\"><\/td>\n<td class=\"Table_Cell\" style=\"text-align: left;\" width=\"186\"><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The data in the table above used a <em>Cradle Note<\/em> called <em>Bedroom<\/em> and was produced by running the automatic query &#8220;BEDROOM &#8211; All&#8221;. Then the resulting\u00a0 table was published to HTML. There were no <em>regexes<\/em> in <em>frames<\/em> applied to the initial query.<\/p>\n<h4>Queries with Regexes in Frames<\/h4>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Simply entering <strong>&#8220;TEXT&#8221;<\/strong> as the <strong>Name<\/strong> of the frame to search and running the query will bring back <em>bed1-bed5<\/em>. The item <em>store1 <\/em>has no content to compare so can&#8217;t match.<\/li>\n<li>Entering <samp>bath <\/samp>in the <strong>Regexes<\/strong> field and re-running will return <em>bed4\u00a0 <\/em>this is the most basic case the text typed in is simply found as a direct match.<\/li>\n<li>If you want to find the incomplete items and find those with a blank frame using the <em>Cradle<\/em> extension of <samp>&lt;null&gt; <\/samp>in the <strong>Regexes<\/strong> field will return <em>store1<\/em> as this has nothing in the frame.<\/li>\n<li>If we want the query to find those that have not used a <em>digit<\/em>\u00a0 in the description (This may be important if the output is parsed by some other program) it is possible to use a<em> regex character class\u00a0[[:digit:]] <\/em>. This will find all the elements containing a digit \u224d <em>[0-9]. <\/em>However, if we want the elements that <em>don&#8217;t<\/em> contain numbers, we can use the second <em>Cradle<\/em> extension of <strong>!<\/strong> to <em>negate<\/em> the result, hence <samp>![[:digit]]<\/samp> will return <em>bed1<\/em> as it used the word &#8216;<em>single&#8217;<\/em> rather than a <em>digit<\/em> for its occupancy value.<\/li>\n<li><em><em>Cra<\/em><\/em><em>dle<\/em> also allows comma separated logical combinations of <em>regexes i<\/em>n frames. Using the <em>Venn diagram<\/em> symbol you can select whether these are <em>AND<\/em> or <em>OR<\/em> combinations. Switching to <em>AND<\/em> and then using the <em>regex<\/em> <samp>[[:digit:]],![[:alpha]]<\/samp> would bring back items where the frame contained digits and no alphabetic characters.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<figure id=\"attachment_3001\" aria-describedby=\"caption-attachment-3001\" style=\"width: 1263px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-3001\" src=\"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png\" alt=\"screenshots of results using regexes in frames in Cradle\" width=\"1263\" height=\"804\" srcset=\"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png 1263w, https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex-300x191.png 300w, https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex-768x489.png 768w, https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex-1024x652.png 1024w\" sizes=\"auto, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><figcaption id=\"caption-attachment-3001\" class=\"wp-caption-text\">Regexes in Frames<\/figcaption><\/figure>\n<h2>Exploring Regexes<\/h2>\n<p>A simple way of testing whether your <em>regex<\/em> will give you the results you want is to use a test program <a href=\"https:\/\/regex101.com\/\">regex101.com\/<\/a> is a good example. This allows you to quickly tweak your statement, and run it against various test data.<br \/>\n<em>Cradle<\/em> uses the <em>PCRE<\/em> &#8216;flavour&#8217; internally.<br \/>\nThe <em>Cradle help <\/em> system has further information on <a href=\"https:\/\/www.threesl.com\/cradle\/help\/7.3\/General\/Regular Expressions.htm\">regexes<\/a><\/p>\n<aside class=\"mashsb-container mashsb-main mashsb-stretched\"><div class=\"mashsb-box\"><div class=\"mashsb-buttons\"><a class=\"mashicon-twitter mash-small mash-center mashsb-noshadow\" href=\"https:\/\/twitter.com\/intent\/tweet?text=&amp;url=https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/&amp;via=threesl\" target=\"_top\" rel=\"nofollow\"><span class=\"icon\"><\/span><span class=\"text\">Tweet<\/span><\/a><a class=\"mashicon-facebook mash-small mash-center mashsb-noshadow\" href=\"https:\/\/www.facebook.com\/sharer.php?u=https%3A%2F%2Fwww.threesl.com%2Fblog%2Fcan-i-check-frames-that-dont-contain-digits%2F\" target=\"_top\" rel=\"nofollow\"><span class=\"icon\"><\/span><span class=\"text\">Share<\/span><\/a><a class=\"mashicon-subscribe mash-small mash-center mashsb-noshadow\" href=\"#\" target=\"_top\" rel=\"nofollow\"><span class=\"icon\"><\/span><span class=\"text\">Newsletter<\/span><\/a><div class=\"onoffswitch2 mash-small mashsb-noshadow\" style=\"display:none\"><\/div><\/div>\n            <\/div>\n                <div style=\"clear:both\"><\/div><\/aside>\n            <!-- Share buttons by mashshare.net - Version: 4.0.47-->","protected":false},"excerpt":{"rendered":"<p>Regex &#8211; Regular Expression A RegEx (Regular Expression) is a pattern matching method often used in text searches and data processing. Cradle supports Regex matches in a number of query elements, so it is possible to perform complex searches on your data. This article gives an example of the use of Regexes in frames. Example: &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Can I check for frames that don&#8217;t contain digits?&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"no","footnotes":""},"categories":[79],"tags":[510],"class_list":["post-2997","post","type-post","status-publish","format-standard","hentry","category-faq","tag-queries"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Can I check for frames that don&#039;t contain digits? - 3SL Blog<\/title>\n<meta name=\"description\" content=\"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don&#039;t contain digits?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Can I check for frames that don&#039;t contain digits? - 3SL Blog\" \/>\n<meta property=\"og:description\" content=\"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don&#039;t contain digits?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/\" \/>\n<meta property=\"og:site_name\" content=\"3SL Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/3SLCradle\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-22T11:24:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-23T14:38:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png\" \/>\n<meta name=\"author\" content=\"3SL\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@threesl\" \/>\n<meta name=\"twitter:site\" content=\"@threesl\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"3SL\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/\"},\"author\":{\"name\":\"3SL\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#\\\/schema\\\/person\\\/749ccd9b2d74303fa8927e06c2af8b0b\"},\"headline\":\"Can I check for frames that don&#8217;t contain digits?\",\"datePublished\":\"2017-11-22T11:24:00+00:00\",\"dateModified\":\"2022-08-23T14:38:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/\"},\"wordCount\":511,\"publisher\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/frame_regex.png\",\"keywords\":[\"queries\"],\"articleSection\":[\"FAQ\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/\",\"url\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/\",\"name\":\"Can I check for frames that don't contain digits? - 3SL Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/frame_regex.png\",\"datePublished\":\"2017-11-22T11:24:00+00:00\",\"dateModified\":\"2022-08-23T14:38:19+00:00\",\"description\":\"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don't contain digits?\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/frame_regex.png\",\"contentUrl\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/frame_regex.png\",\"width\":1263,\"height\":804,\"caption\":\"Regexes in Frames\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/can-i-check-frames-that-dont-contain-digits\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Can I check for frames that don&#8217;t contain digits?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/\",\"name\":\"3SL Blog\",\"description\":\"From concept to creation\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#organization\",\"name\":\"3SL\",\"url\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/02\\\/3SL_Logo_Medium.png\",\"contentUrl\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/02\\\/3SL_Logo_Medium.png\",\"width\":152,\"height\":80,\"caption\":\"3SL\"},\"image\":{\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/facebook.com\\\/3SLCradle\",\"https:\\\/\\\/x.com\\\/threesl\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.threesl.com\\\/blog\\\/#\\\/schema\\\/person\\\/749ccd9b2d74303fa8927e06c2af8b0b\",\"name\":\"3SL\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g\",\"caption\":\"3SL\"},\"sameAs\":[\"http:\\\/\\\/www.threesl.com\\\/\",\"https:\\\/\\\/x.com\\\/threesl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Can I check for frames that don't contain digits? - 3SL Blog","description":"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don't contain digits?","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/","og_locale":"en_GB","og_type":"article","og_title":"Can I check for frames that don't contain digits? - 3SL Blog","og_description":"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don't contain digits?","og_url":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/","og_site_name":"3SL Blog","article_publisher":"http:\/\/facebook.com\/3SLCradle","article_published_time":"2017-11-22T11:24:00+00:00","article_modified_time":"2022-08-23T14:38:19+00:00","og_image":[{"url":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png","type":"","width":"","height":""}],"author":"3SL","twitter_card":"summary_large_image","twitter_creator":"@threesl","twitter_site":"@threesl","twitter_misc":{"Written by":"3SL","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#article","isPartOf":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/"},"author":{"name":"3SL","@id":"https:\/\/www.threesl.com\/blog\/#\/schema\/person\/749ccd9b2d74303fa8927e06c2af8b0b"},"headline":"Can I check for frames that don&#8217;t contain digits?","datePublished":"2017-11-22T11:24:00+00:00","dateModified":"2022-08-23T14:38:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/"},"wordCount":511,"publisher":{"@id":"https:\/\/www.threesl.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png","keywords":["queries"],"articleSection":["FAQ"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/","url":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/","name":"Can I check for frames that don't contain digits? - 3SL Blog","isPartOf":{"@id":"https:\/\/www.threesl.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#primaryimage"},"image":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#primaryimage"},"thumbnailUrl":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png","datePublished":"2017-11-22T11:24:00+00:00","dateModified":"2022-08-23T14:38:19+00:00","description":"A worked example setting regexes in frames when querying items in Cradle. Answers the question Can I check for frames that don't contain digits?","breadcrumb":{"@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#primaryimage","url":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png","contentUrl":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/11\/frame_regex.png","width":1263,"height":804,"caption":"Regexes in Frames"},{"@type":"BreadcrumbList","@id":"https:\/\/www.threesl.com\/blog\/can-i-check-frames-that-dont-contain-digits\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.threesl.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Can I check for frames that don&#8217;t contain digits?"}]},{"@type":"WebSite","@id":"https:\/\/www.threesl.com\/blog\/#website","url":"https:\/\/www.threesl.com\/blog\/","name":"3SL Blog","description":"From concept to creation","publisher":{"@id":"https:\/\/www.threesl.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.threesl.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.threesl.com\/blog\/#organization","name":"3SL","url":"https:\/\/www.threesl.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.threesl.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/02\/3SL_Logo_Medium.png","contentUrl":"https:\/\/www.threesl.com\/blog\/wp-content\/uploads\/2017\/02\/3SL_Logo_Medium.png","width":152,"height":80,"caption":"3SL"},"image":{"@id":"https:\/\/www.threesl.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/facebook.com\/3SLCradle","https:\/\/x.com\/threesl"]},{"@type":"Person","@id":"https:\/\/www.threesl.com\/blog\/#\/schema\/person\/749ccd9b2d74303fa8927e06c2af8b0b","name":"3SL","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cee8089745b3e7d79c57d621cc634da71def3561fcf40d4932a3e38743e23af0?s=96&d=mm&r=g","caption":"3SL"},"sameAs":["http:\/\/www.threesl.com\/","https:\/\/x.com\/threesl"]}]}},"modified_by":"Jan Lamb","_links":{"self":[{"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/posts\/2997","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/comments?post=2997"}],"version-history":[{"count":8,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/posts\/2997\/revisions"}],"predecessor-version":[{"id":7532,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/posts\/2997\/revisions\/7532"}],"wp:attachment":[{"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/media?parent=2997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/categories?post=2997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.threesl.com\/blog\/wp-json\/wp\/v2\/tags?post=2997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}