如何使用规则填充获取另一列的子字符串

如何使用规则填充获取另一列的子字符串

我正在尝试使用 LEFT、RIGHT 和 SEARCH 函数将从另一列中提取的函数名称填充到一列中,但没有得到任何好的结果。

我有一个如下功能列表:

def _handle_push(self, word)
def _handle_table_reset(self, word)
def _handle_sentinel(self, word)
def _handle_struct(self, word)
def _handle_define_table(self, word)
def _handle_debug(self, word)
def _handle_copy(self, word)
def _handle_end_row(self, word)
def _handle_placeholder_count(self, word)
def _handle_convert_mach_continuous(self, word)

例如,如果我选择第一个

def _handle_push(self, word)

我想要存储在另一列中的结果是

_handle_push

但我不知道如何实现这一点。

任何建议将被认真考虑。

相关内容