Jump to content
UBot Underground

[solved]Delete Letter/Character from CSV


Recommended Posts

How can I go through a column of a csv and delete all instances of a letter-even when it is part of a word?  For example, remove every instance of the letter "E"?

 

Here is what I have tried:

set table cell(&my table, #row_num, 2, $replace($table cell(&my table, #row_num, 2), "Â", $nothing))
    increment(#row_num)
Edited by katelynnm
Link to post
Share on other sites

Hi,

 

Not sure if you put what you tried in a loop.

 

Sample:

set(#row_num, 0, "Global")
loop($table total rows(&ttab)) {
    set table cell(&my table, #row_num, 2, $replace($table cell(&my table, #row_num, 2), "E", $nothing))
    increment(#row_num)
}

Kevin

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...