Jump to content

Recommended Posts

Posted

Hi,

 

I've got a string that contains "(Value)" and i'd like to count them.

 

What functions whould i use?

Posted

Count occurrences or add values? Single string with multiple occurrences or multiple strings?

Posted

Count the caracters between the Parenthese in a single string

Posted
(vl-string-position (ascii "(") "aa(bbb)cccc")

Posted

Or:

(vl-string-search "(" "aa(bbb)cccc")

Posted

(defun parPosition (string / PositionStart PositionEnd)
   (setq PositionStart (vl-string-position (ascii "(") string))
   (setq PositionEnd (vl-string-position (ascii ")") string))
   (setq Count (- PositionEnd PositionStart))
   Count
)

 

Like this :D

Posted

How do I control an error of if block not selected return to the beginning?

Posted
(defun parPosition (string / PositionStart PositionEnd)
   (setq PositionStart (vl-string-position (ascii "(") string))
   (setq PositionEnd (vl-string-position (ascii ")") string))
   (setq Count (- PositionEnd PositionStart))
   Count
)

 

Like this :D

Not quite. You should subtract 1 from count.
Posted
How do I control an error of if block not selected return to the beginning?

You should start a new topic. And explain better.

Posted

I did but in my other routine :D

Posted

Try this once

(vl-list->string (reverse (member 41 (reverse (member 40 (vl-string->list "aa(bbb)cccc"))))))

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...