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

  • Home
  • SEARCH
  • 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 696739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:05:40+00:00 2026-05-14T03:05:40+00:00

What I need to do is to break atom to tokens. E. g.: tokenize_string(‘Hello,

  • 0

What I need to do is to break atom to tokens. E. g.:

tokenize_string('Hello, World!', L).

would unify L=['Hello',',','World','!']. Exactly as tokenize_atom/2 do. But when I try to use tokenize_atom/2 with non-latin letters it fails. Is there any universal replacement or how I can write one? Thanks in advance.

  • 1 1 Answer
  • 1 View
  • 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-05-14T03:05:41+00:00Added an answer on May 14, 2026 at 3:05 am

    Well, you could write your own lexer. For example I can show you a lexer from my arithmetic expressions parser.

    :- use_module(library(http/dcg_basics)).
    
    %
    % lexer
    %
    
    lex([H | T]) -->
        lexem_t(H), !,
        lex(T).
    
    lex([]) -->
        [].
    
    lexem_t(L) --> trashes, lexem(L), trashes.
    
    trashes --> trash, !, trashes.
    trashes --> [].
    
    trash --> comment_marker(End), !, string(_), End.
    trash --> white.
    
    comment_marker("*)") --> "(*".
    comment_marker("*/") --> "/*".
    
    hex_start --> "0X".
    hex_start --> "0x".
    
    lexem(open) --> "(".
    lexem(close) --> ")".
    lexem(+) --> "+".
    lexem(-) --> "-".
    lexem(*) --> "*".
    lexem(/) --> "/".
    lexem(^) --> "^".
    lexem(,) --> ",".
    lexem(!) --> "!".
    
    lexem(N) --> hex_start, !, xinteger(N). % this handles hex numbers
    lexem(N) --> number(N). % this handles integers/floats
    lexem(var(A)) --> identifier_c(L), {string_to_atom(L, A)}.
    
    identifier_c([H | T]) --> alpha(H), !, many_alnum(T).
    
    alpha(H) --> [H], {code_type(H, alpha)}.
    alnum(H) --> [H], {code_type(H, alnum)}.
    
    many_alnum([H | T]) --> alnum(H), !, many_alnum(T).
    many_alnum([]) --> [].
    

    How it works:

     ?- phrase(lex(L), "abc 123 привет 123.4e5 !+- 0xabc,,,"), write(L).
    [var(abc), 123, var(привет), 1.234e+007, !, +, -, 2748, (,), (,), (,)]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to break a while loop when the use clicks the close button
I need to break up date time, currently when I use: Write(DateTime.Now); it displays:
I am currently using sequential workflows in Windows WF, but need to break up
I need to break apart a string that always looks like this: something --
Suppose I need to break out of three or four nested for loops at
Suppose you are calling a function, where there's clearly a need to break down
I need to pull out the content out of two paragraph tags and break
I need to break down the amounts on their respective bill/coin. The output is
I need to break open a MS Word file (.doc) and extract its constituent
For an iPhone ebook application I need to break arbitrarily long HTML documents up

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.