Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8936627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:15:16+00:00 2026-06-15T10:15:16+00:00

I am trying to parse a really small subset of HTML markup. PKSequence *parrser

  • 0

I am trying to parse a really small subset of HTML markup.

PKSequence *parrser = [PKSequence sequence];
[parrser add:[PKSymbol symbolWithString:@"<title>"]];   
PKWord *word = [PKWord word];
[word setAssembler:self selector:@selector(workOnWordAssembly:)];
[parrser add:word];
[parrser add:[PKSymbol symbolWithString:@"</title>"]];

PKAssembly *result = [parrser bestMatchFor:[PKTokenAssembly assemblyWithString:@"<title>teeest</title>"]];


-(void)workOnWordAssembly:(PKAssembly *)a {
        NSLog(@"We entered this");
}

but workOnWordAssembly is not being called.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T10:15:18+00:00Added an answer on June 15, 2026 at 10:15 am

    Developer of ParseKit here. Make sure you are using head of trunk on google code.

    1. Assembler callbacks now have two arguments.
    2. By default, the string <title> will not be tokenized as a single Symbol token. That would be one < Symbol token, one title Word token and one > Symbol token. You could configure that behavior, however.

    Please read the documentation on ParseKit, particularly the tokenization docs to understand how tokenization in ParseKit works.


    Here’s what’s missing to accomplish your basic task above. However, I’m not sure this is the best approach for a real world task. I think reading the docs mentioned above would help explain that.

    PKTokenizer *t = [PKTokenizer tokenizerWithString:@"<title>foobar</title>"];
    [t.symbolState add:@"<title>"];
    [t.symbolState add:@"</title>"];
    
    PKAssembly *a = [PKTokenAssembly assemblyWithTokenizer:t];
    
    PKSequence *p = [PKSequence sequence];
    
    [p add:[PKSymbol symbolWithString:@"<title>"]]; 
    
    PKWord *word = [PKWord word];
    [word setAssembler:self selector:@selector(parser:didMatchWord:)];
    [p add:word];
    
    [p add:[PKSymbol symbolWithString:@"</title>"]];
    
    PKAssembly *result = [p bestMatchFor:a];
    

    -(void)parser:(PKParser *)p didMatchWord:(PKAssembly *)a {
            NSLog(@"%s %@", __PRETTY_FUNCTION__, a);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to parse a really simple HTML document with some xpath. There are
I'm trying to parse a string in a specific format and I'm really surprised
Trying to parse an HTML document and extract some elements (any links to text
I'm trying to find a good way to parse JSON in C. I really
I'm trying to parse download pages from www.mediafire.com, but i really often get a
For personal use i am trying to parse a little html page that show
I've got an HTML table that I'm trying to parse the information from. However,
I'm trying to parse a really simple XML in my android app, for example:
I'm trying to parse the Associated Press RSS feed and the date is really
I'm trying parse the follow XML file: <root>Root <pai>Pai_1 <filho>Pai1,Filho1</filho> <filho>Pai1,Filho2</filho> </pai> <pai>Pai_2 <filho>Pai2,Filho1</filho>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.