{"id":12302,"date":"2022-09-30T09:31:14","date_gmt":"2022-09-30T04:01:14","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/"},"modified":"2022-09-30T09:31:14","modified_gmt":"2022-09-30T04:01:14","slug":"solved-how-to-retrieve-tokens-from-a-string-that-are-keywords","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/","title":{"rendered":"[Solved] How to retrieve tokens from a string that are keywords?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-32463160\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"32463160\" data-parentid=\"32463013\" data-score=\"5\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Lexical_analysis\">Lexing<\/a> is not specific to C (in the sense that you&#8217;ll use similar techniques in other programming languages). You could do that with hand-written code (using <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Finite-state_machine\">finite automaton<\/a> coding techniques). You could use a lexer generator like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/github.com\/westes\/flex\/\">flex<\/a>. You might even use <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Regular_expression\">regexprs<\/a>, e.g. <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/man7.org\/linux\/man-pages\/man3\/regex.3.html\">regex.h<\/a> functions on POSIX systems.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Parsing\">Parsing<\/a> is also a well known domain with standard techniques (at least for <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Context-free_language\">context free languages<\/a>, if you want some efficiency). You could use <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Recursive_descent_parser\">recursive descent parsing<\/a>, you could generate a parser using <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.gnu.org\/software\/bison\/\">bison<\/a> (which has <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.gnu.org\/software\/bison\/manual\/html_node\/Examples.html\">examples<\/a> very close to your homework) or <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.antlr.org\/\">ANTLR<\/a>. Read more about <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/LL_parser\">LL parsing<\/a> &amp; <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/LR_parser\">LR parsing<\/a>. BTW, parsing techniques can be used for lexing.<\/p>\n<p>BTW, there are tons of <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Free_software\">free software<\/a> (e.g. interpreters of scripting languages like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.gnu.org\/software\/guile\/\">Guile<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/lua.org\">Lua<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/python.org\/\">Python<\/a>, etc&#8230;.), <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/json.org\/\">JSON<\/a>, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/yaml.org\/\">YAML<\/a>, XML&#8230; parsers, several compilers (e.g. <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/repo.or.cz\/w\/tinycc.git\">tinycc<\/a>) etc&#8230; illustrating these techniques. You&#8217;ll learn a lot by studying their source code.<\/p>\n<p>It could be easier for your to sometimes have a lookahead of one or two characters, e.g. by first reading the entire line (with <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/man7.org\/linux\/man-pages\/man3\/getline.3.html\">getline(3)<\/a> or else <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/man7.org\/linux\/man-pages\/man3\/fgets.3.html\">fgets(3)<\/a>, and perhaps even <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/cnswww.cns.cwru.edu\/php\/chet\/readline\/rltop.html\">readline<\/a>, which gives you a line editor). If you cannot read a whole line consider using <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/man7.org\/linux\/man-pages\/man3\/fgetc.3.html\">fgetc(3)<\/a> and <code>ungetc<\/code> when needed. The classifying utilities from <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/man7.org\/linux\/man-pages\/man3\/isalpha.3.html\"><code>&lt;ctype.h&gt;<\/code><\/a> like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/en.cppreference.com\/w\/c\/string\/byte\/isalpha\">isalpha<\/a> might be helpful. <\/p>\n<p>If you care about <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/UTF-8\">UTF-8<\/a> (and in principle you should) things become slightly more complex since some <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/en.wikipedia.org\/wiki\/Unicode\">Unicode<\/a> characters (like \u20ac, \u00e9, ?, &#8230;) are represented in UTF-8 by several bytes. A library like <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.gnu.org\/software\/libunistring\/\">libunistring<\/a> should be very helpful.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">2<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to retrieve tokens from a string that are keywords? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Lexing is not specific to C (in the sense that you&#8217;ll use similar techniques in other programming languages). You could do that with hand-written code (using finite automaton coding techniques). You could use a lexer generator like flex. You might even use regexprs, e.g. regex.h functions on POSIX systems. Parsing is also a well &#8230; <a title=\"[Solved] How to retrieve tokens from a string that are keywords?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\" aria-label=\"More on [Solved] How to retrieve tokens from a string that are keywords?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324,712,568,362],"class_list":["post-12302","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c","tag-pointers","tag-split","tag-string"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to retrieve tokens from a string that are keywords? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to retrieve tokens from a string that are keywords? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Lexing is not specific to C (in the sense that you&#8217;ll use similar techniques in other programming languages). You could do that with hand-written code (using finite automaton coding techniques). You could use a lexer generator like flex. You might even use regexprs, e.g. regex.h functions on POSIX systems. Parsing is also a well ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-30T04:01:14+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to retrieve tokens from a string that are keywords?\",\"datePublished\":\"2022-09-30T04:01:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\"},\"wordCount\":273,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"c++\",\"pointers\",\"split\",\"string\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\",\"name\":\"[Solved] How to retrieve tokens from a string that are keywords? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-30T04:01:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to retrieve tokens from a string that are keywords?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to retrieve tokens from a string that are keywords? - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to retrieve tokens from a string that are keywords? - JassWeb","og_description":"[ad_1] Lexing is not specific to C (in the sense that you&#8217;ll use similar techniques in other programming languages). You could do that with hand-written code (using finite automaton coding techniques). You could use a lexer generator like flex. You might even use regexprs, e.g. regex.h functions on POSIX systems. Parsing is also a well ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/","og_site_name":"JassWeb","article_published_time":"2022-09-30T04:01:14+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to retrieve tokens from a string that are keywords?","datePublished":"2022-09-30T04:01:14+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/"},"wordCount":273,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++","pointers","split","string"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/","name":"[Solved] How to retrieve tokens from a string that are keywords? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-30T04:01:14+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-retrieve-tokens-from-a-string-that-are-keywords\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to retrieve tokens from a string that are keywords?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/12302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=12302"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/12302\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=12302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=12302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=12302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}